Current Path : /storage/v11800/ls-narendraram/

Linux v11800 5.3.0-1023-aws #25~18.04.1-Ubuntu SMP Fri Jun 5 15:19:18 UTC 2020 aarch64

Upload File :
Current File : /storage/v11800/ls-narendraram/.db.sql
-- MariaDB dump 10.19  Distrib 10.6.9-MariaDB, for debian-linux-gnu (aarch64)
--
-- Host: localhost    Database: ls-narendraramdb
-- ------------------------------------------------------
-- Server version	10.6.9-MariaDB-1:10.6.9+maria~ubu2004

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
  `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2024-02-05 16:35:52','2024-02-05 16:35:52','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://en.gravatar.com/\">Gravatar</a>.',0,'1','','comment',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_e_events`
--

DROP TABLE IF EXISTS `wp_e_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_e_events` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_data` text COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_e_events`
--

LOCK TABLES `wp_e_events` WRITE;
/*!40000 ALTER TABLE `wp_e_events` DISABLE KEYS */;
INSERT INTO `wp_e_events` VALUES (1,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2024-02-05T22:40:06.279-06:30\"}','2024-02-05 22:40:06');
/*!40000 ALTER TABLE `wp_e_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
  `link_rating` int(11) NOT NULL DEFAULT 0,
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_links`
--

LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_options`
--

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=886 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','https://narendraram.com','yes'),(2,'home','https://narendraram.com','yes'),(3,'blogname','Narendra Ram','yes'),(4,'blogdescription','A Versatile Tycoon, Proficient in Diverse Realms','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','wp@dxpsites.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','','yes'),(29,'rewrite_rules','','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:7:{i:0;s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";i:1;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:2;s:23:\"elementor/elementor.php\";i:3;s:37:\"elementskit-lite/elementskit-lite.php\";i:4;s:51:\"header-footer-elementor/header-footer-elementor.php\";i:5;s:32:\"romethemeform/rometheme-form.php\";i:6;s:43:\"template-kit-import/template-kit-import.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','5.5','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','hello-elementor','yes'),(41,'stylesheet','hello-elementor','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','56657','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:0:{}','yes'),(77,'widget_text','a:0:{}','yes'),(78,'widget_rss','a:0:{}','yes'),(79,'uninstall_plugins','a:1:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','182','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','211','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1722702951','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'wp_attachment_pages_enabled','0','yes'),(100,'initial_db_version','56657','yes'),(101,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(102,'fresh_site','0','yes'),(103,'user_count','1','no'),(104,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(105,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(106,'cron','a:10:{i:1714574153;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1714581353;a:4:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1714583345;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1714583346;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1714583347;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1714583395;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1715013353;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1715099753;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1715203303;a:1:{s:34:\"elementor_1_elementor_updater_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:43:\"elementor_1_elementor_updater_cron_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}s:7:\"version\";i:2;}','yes'),(107,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(121,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.4.3\";s:5:\"files\";a:500:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:20:\"block/editor-rtl.css\";i:29;s:24:\"block/editor-rtl.min.css\";i:30;s:16:\"block/editor.css\";i:31;s:20:\"block/editor.min.css\";i:32;s:21:\"button/editor-rtl.css\";i:33;s:25:\"button/editor-rtl.min.css\";i:34;s:17:\"button/editor.css\";i:35;s:21:\"button/editor.min.css\";i:36;s:20:\"button/style-rtl.css\";i:37;s:24:\"button/style-rtl.min.css\";i:38;s:16:\"button/style.css\";i:39;s:20:\"button/style.min.css\";i:40;s:22:\"buttons/editor-rtl.css\";i:41;s:26:\"buttons/editor-rtl.min.css\";i:42;s:18:\"buttons/editor.css\";i:43;s:22:\"buttons/editor.min.css\";i:44;s:21:\"buttons/style-rtl.css\";i:45;s:25:\"buttons/style-rtl.min.css\";i:46;s:17:\"buttons/style.css\";i:47;s:21:\"buttons/style.min.css\";i:48;s:22:\"calendar/style-rtl.css\";i:49;s:26:\"calendar/style-rtl.min.css\";i:50;s:18:\"calendar/style.css\";i:51;s:22:\"calendar/style.min.css\";i:52;s:25:\"categories/editor-rtl.css\";i:53;s:29:\"categories/editor-rtl.min.css\";i:54;s:21:\"categories/editor.css\";i:55;s:25:\"categories/editor.min.css\";i:56;s:24:\"categories/style-rtl.css\";i:57;s:28:\"categories/style-rtl.min.css\";i:58;s:20:\"categories/style.css\";i:59;s:24:\"categories/style.min.css\";i:60;s:19:\"code/editor-rtl.css\";i:61;s:23:\"code/editor-rtl.min.css\";i:62;s:15:\"code/editor.css\";i:63;s:19:\"code/editor.min.css\";i:64;s:18:\"code/style-rtl.css\";i:65;s:22:\"code/style-rtl.min.css\";i:66;s:14:\"code/style.css\";i:67;s:18:\"code/style.min.css\";i:68;s:18:\"code/theme-rtl.css\";i:69;s:22:\"code/theme-rtl.min.css\";i:70;s:14:\"code/theme.css\";i:71;s:18:\"code/theme.min.css\";i:72;s:22:\"columns/editor-rtl.css\";i:73;s:26:\"columns/editor-rtl.min.css\";i:74;s:18:\"columns/editor.css\";i:75;s:22:\"columns/editor.min.css\";i:76;s:21:\"columns/style-rtl.css\";i:77;s:25:\"columns/style-rtl.min.css\";i:78;s:17:\"columns/style.css\";i:79;s:21:\"columns/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:30:\"comment-template/style-rtl.css\";i:85;s:34:\"comment-template/style-rtl.min.css\";i:86;s:26:\"comment-template/style.css\";i:87;s:30:\"comment-template/style.min.css\";i:88;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:89;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:90;s:38:\"comments-pagination-numbers/editor.css\";i:91;s:42:\"comments-pagination-numbers/editor.min.css\";i:92;s:34:\"comments-pagination/editor-rtl.css\";i:93;s:38:\"comments-pagination/editor-rtl.min.css\";i:94;s:30:\"comments-pagination/editor.css\";i:95;s:34:\"comments-pagination/editor.min.css\";i:96;s:33:\"comments-pagination/style-rtl.css\";i:97;s:37:\"comments-pagination/style-rtl.min.css\";i:98;s:29:\"comments-pagination/style.css\";i:99;s:33:\"comments-pagination/style.min.css\";i:100;s:29:\"comments-title/editor-rtl.css\";i:101;s:33:\"comments-title/editor-rtl.min.css\";i:102;s:25:\"comments-title/editor.css\";i:103;s:29:\"comments-title/editor.min.css\";i:104;s:23:\"comments/editor-rtl.css\";i:105;s:27:\"comments/editor-rtl.min.css\";i:106;s:19:\"comments/editor.css\";i:107;s:23:\"comments/editor.min.css\";i:108;s:22:\"comments/style-rtl.css\";i:109;s:26:\"comments/style-rtl.min.css\";i:110;s:18:\"comments/style.css\";i:111;s:22:\"comments/style.min.css\";i:112;s:20:\"cover/editor-rtl.css\";i:113;s:24:\"cover/editor-rtl.min.css\";i:114;s:16:\"cover/editor.css\";i:115;s:20:\"cover/editor.min.css\";i:116;s:19:\"cover/style-rtl.css\";i:117;s:23:\"cover/style-rtl.min.css\";i:118;s:15:\"cover/style.css\";i:119;s:19:\"cover/style.min.css\";i:120;s:22:\"details/editor-rtl.css\";i:121;s:26:\"details/editor-rtl.min.css\";i:122;s:18:\"details/editor.css\";i:123;s:22:\"details/editor.min.css\";i:124;s:21:\"details/style-rtl.css\";i:125;s:25:\"details/style-rtl.min.css\";i:126;s:17:\"details/style.css\";i:127;s:21:\"details/style.min.css\";i:128;s:20:\"embed/editor-rtl.css\";i:129;s:24:\"embed/editor-rtl.min.css\";i:130;s:16:\"embed/editor.css\";i:131;s:20:\"embed/editor.min.css\";i:132;s:19:\"embed/style-rtl.css\";i:133;s:23:\"embed/style-rtl.min.css\";i:134;s:15:\"embed/style.css\";i:135;s:19:\"embed/style.min.css\";i:136;s:19:\"embed/theme-rtl.css\";i:137;s:23:\"embed/theme-rtl.min.css\";i:138;s:15:\"embed/theme.css\";i:139;s:19:\"embed/theme.min.css\";i:140;s:19:\"file/editor-rtl.css\";i:141;s:23:\"file/editor-rtl.min.css\";i:142;s:15:\"file/editor.css\";i:143;s:19:\"file/editor.min.css\";i:144;s:18:\"file/style-rtl.css\";i:145;s:22:\"file/style-rtl.min.css\";i:146;s:14:\"file/style.css\";i:147;s:18:\"file/style.min.css\";i:148;s:23:\"footnotes/style-rtl.css\";i:149;s:27:\"footnotes/style-rtl.min.css\";i:150;s:19:\"footnotes/style.css\";i:151;s:23:\"footnotes/style.min.css\";i:152;s:23:\"freeform/editor-rtl.css\";i:153;s:27:\"freeform/editor-rtl.min.css\";i:154;s:19:\"freeform/editor.css\";i:155;s:23:\"freeform/editor.min.css\";i:156;s:22:\"gallery/editor-rtl.css\";i:157;s:26:\"gallery/editor-rtl.min.css\";i:158;s:18:\"gallery/editor.css\";i:159;s:22:\"gallery/editor.min.css\";i:160;s:21:\"gallery/style-rtl.css\";i:161;s:25:\"gallery/style-rtl.min.css\";i:162;s:17:\"gallery/style.css\";i:163;s:21:\"gallery/style.min.css\";i:164;s:21:\"gallery/theme-rtl.css\";i:165;s:25:\"gallery/theme-rtl.min.css\";i:166;s:17:\"gallery/theme.css\";i:167;s:21:\"gallery/theme.min.css\";i:168;s:20:\"group/editor-rtl.css\";i:169;s:24:\"group/editor-rtl.min.css\";i:170;s:16:\"group/editor.css\";i:171;s:20:\"group/editor.min.css\";i:172;s:19:\"group/style-rtl.css\";i:173;s:23:\"group/style-rtl.min.css\";i:174;s:15:\"group/style.css\";i:175;s:19:\"group/style.min.css\";i:176;s:19:\"group/theme-rtl.css\";i:177;s:23:\"group/theme-rtl.min.css\";i:178;s:15:\"group/theme.css\";i:179;s:19:\"group/theme.min.css\";i:180;s:21:\"heading/style-rtl.css\";i:181;s:25:\"heading/style-rtl.min.css\";i:182;s:17:\"heading/style.css\";i:183;s:21:\"heading/style.min.css\";i:184;s:19:\"html/editor-rtl.css\";i:185;s:23:\"html/editor-rtl.min.css\";i:186;s:15:\"html/editor.css\";i:187;s:19:\"html/editor.min.css\";i:188;s:20:\"image/editor-rtl.css\";i:189;s:24:\"image/editor-rtl.min.css\";i:190;s:16:\"image/editor.css\";i:191;s:20:\"image/editor.min.css\";i:192;s:19:\"image/style-rtl.css\";i:193;s:23:\"image/style-rtl.min.css\";i:194;s:15:\"image/style.css\";i:195;s:19:\"image/style.min.css\";i:196;s:19:\"image/theme-rtl.css\";i:197;s:23:\"image/theme-rtl.min.css\";i:198;s:15:\"image/theme.css\";i:199;s:19:\"image/theme.min.css\";i:200;s:29:\"latest-comments/style-rtl.css\";i:201;s:33:\"latest-comments/style-rtl.min.css\";i:202;s:25:\"latest-comments/style.css\";i:203;s:29:\"latest-comments/style.min.css\";i:204;s:27:\"latest-posts/editor-rtl.css\";i:205;s:31:\"latest-posts/editor-rtl.min.css\";i:206;s:23:\"latest-posts/editor.css\";i:207;s:27:\"latest-posts/editor.min.css\";i:208;s:26:\"latest-posts/style-rtl.css\";i:209;s:30:\"latest-posts/style-rtl.min.css\";i:210;s:22:\"latest-posts/style.css\";i:211;s:26:\"latest-posts/style.min.css\";i:212;s:18:\"list/style-rtl.css\";i:213;s:22:\"list/style-rtl.min.css\";i:214;s:14:\"list/style.css\";i:215;s:18:\"list/style.min.css\";i:216;s:25:\"media-text/editor-rtl.css\";i:217;s:29:\"media-text/editor-rtl.min.css\";i:218;s:21:\"media-text/editor.css\";i:219;s:25:\"media-text/editor.min.css\";i:220;s:24:\"media-text/style-rtl.css\";i:221;s:28:\"media-text/style-rtl.min.css\";i:222;s:20:\"media-text/style.css\";i:223;s:24:\"media-text/style.min.css\";i:224;s:19:\"more/editor-rtl.css\";i:225;s:23:\"more/editor-rtl.min.css\";i:226;s:15:\"more/editor.css\";i:227;s:19:\"more/editor.min.css\";i:228;s:30:\"navigation-link/editor-rtl.css\";i:229;s:34:\"navigation-link/editor-rtl.min.css\";i:230;s:26:\"navigation-link/editor.css\";i:231;s:30:\"navigation-link/editor.min.css\";i:232;s:29:\"navigation-link/style-rtl.css\";i:233;s:33:\"navigation-link/style-rtl.min.css\";i:234;s:25:\"navigation-link/style.css\";i:235;s:29:\"navigation-link/style.min.css\";i:236;s:33:\"navigation-submenu/editor-rtl.css\";i:237;s:37:\"navigation-submenu/editor-rtl.min.css\";i:238;s:29:\"navigation-submenu/editor.css\";i:239;s:33:\"navigation-submenu/editor.min.css\";i:240;s:25:\"navigation/editor-rtl.css\";i:241;s:29:\"navigation/editor-rtl.min.css\";i:242;s:21:\"navigation/editor.css\";i:243;s:25:\"navigation/editor.min.css\";i:244;s:24:\"navigation/style-rtl.css\";i:245;s:28:\"navigation/style-rtl.min.css\";i:246;s:20:\"navigation/style.css\";i:247;s:24:\"navigation/style.min.css\";i:248;s:23:\"nextpage/editor-rtl.css\";i:249;s:27:\"nextpage/editor-rtl.min.css\";i:250;s:19:\"nextpage/editor.css\";i:251;s:23:\"nextpage/editor.min.css\";i:252;s:24:\"page-list/editor-rtl.css\";i:253;s:28:\"page-list/editor-rtl.min.css\";i:254;s:20:\"page-list/editor.css\";i:255;s:24:\"page-list/editor.min.css\";i:256;s:23:\"page-list/style-rtl.css\";i:257;s:27:\"page-list/style-rtl.min.css\";i:258;s:19:\"page-list/style.css\";i:259;s:23:\"page-list/style.min.css\";i:260;s:24:\"paragraph/editor-rtl.css\";i:261;s:28:\"paragraph/editor-rtl.min.css\";i:262;s:20:\"paragraph/editor.css\";i:263;s:24:\"paragraph/editor.min.css\";i:264;s:23:\"paragraph/style-rtl.css\";i:265;s:27:\"paragraph/style-rtl.min.css\";i:266;s:19:\"paragraph/style.css\";i:267;s:23:\"paragraph/style.min.css\";i:268;s:25:\"post-author/style-rtl.css\";i:269;s:29:\"post-author/style-rtl.min.css\";i:270;s:21:\"post-author/style.css\";i:271;s:25:\"post-author/style.min.css\";i:272;s:33:\"post-comments-form/editor-rtl.css\";i:273;s:37:\"post-comments-form/editor-rtl.min.css\";i:274;s:29:\"post-comments-form/editor.css\";i:275;s:33:\"post-comments-form/editor.min.css\";i:276;s:32:\"post-comments-form/style-rtl.css\";i:277;s:36:\"post-comments-form/style-rtl.min.css\";i:278;s:28:\"post-comments-form/style.css\";i:279;s:32:\"post-comments-form/style.min.css\";i:280;s:23:\"post-date/style-rtl.css\";i:281;s:27:\"post-date/style-rtl.min.css\";i:282;s:19:\"post-date/style.css\";i:283;s:23:\"post-date/style.min.css\";i:284;s:27:\"post-excerpt/editor-rtl.css\";i:285;s:31:\"post-excerpt/editor-rtl.min.css\";i:286;s:23:\"post-excerpt/editor.css\";i:287;s:27:\"post-excerpt/editor.min.css\";i:288;s:26:\"post-excerpt/style-rtl.css\";i:289;s:30:\"post-excerpt/style-rtl.min.css\";i:290;s:22:\"post-excerpt/style.css\";i:291;s:26:\"post-excerpt/style.min.css\";i:292;s:34:\"post-featured-image/editor-rtl.css\";i:293;s:38:\"post-featured-image/editor-rtl.min.css\";i:294;s:30:\"post-featured-image/editor.css\";i:295;s:34:\"post-featured-image/editor.min.css\";i:296;s:33:\"post-featured-image/style-rtl.css\";i:297;s:37:\"post-featured-image/style-rtl.min.css\";i:298;s:29:\"post-featured-image/style.css\";i:299;s:33:\"post-featured-image/style.min.css\";i:300;s:34:\"post-navigation-link/style-rtl.css\";i:301;s:38:\"post-navigation-link/style-rtl.min.css\";i:302;s:30:\"post-navigation-link/style.css\";i:303;s:34:\"post-navigation-link/style.min.css\";i:304;s:28:\"post-template/editor-rtl.css\";i:305;s:32:\"post-template/editor-rtl.min.css\";i:306;s:24:\"post-template/editor.css\";i:307;s:28:\"post-template/editor.min.css\";i:308;s:27:\"post-template/style-rtl.css\";i:309;s:31:\"post-template/style-rtl.min.css\";i:310;s:23:\"post-template/style.css\";i:311;s:27:\"post-template/style.min.css\";i:312;s:24:\"post-terms/style-rtl.css\";i:313;s:28:\"post-terms/style-rtl.min.css\";i:314;s:20:\"post-terms/style.css\";i:315;s:24:\"post-terms/style.min.css\";i:316;s:24:\"post-title/style-rtl.css\";i:317;s:28:\"post-title/style-rtl.min.css\";i:318;s:20:\"post-title/style.css\";i:319;s:24:\"post-title/style.min.css\";i:320;s:26:\"preformatted/style-rtl.css\";i:321;s:30:\"preformatted/style-rtl.min.css\";i:322;s:22:\"preformatted/style.css\";i:323;s:26:\"preformatted/style.min.css\";i:324;s:24:\"pullquote/editor-rtl.css\";i:325;s:28:\"pullquote/editor-rtl.min.css\";i:326;s:20:\"pullquote/editor.css\";i:327;s:24:\"pullquote/editor.min.css\";i:328;s:23:\"pullquote/style-rtl.css\";i:329;s:27:\"pullquote/style-rtl.min.css\";i:330;s:19:\"pullquote/style.css\";i:331;s:23:\"pullquote/style.min.css\";i:332;s:23:\"pullquote/theme-rtl.css\";i:333;s:27:\"pullquote/theme-rtl.min.css\";i:334;s:19:\"pullquote/theme.css\";i:335;s:23:\"pullquote/theme.min.css\";i:336;s:39:\"query-pagination-numbers/editor-rtl.css\";i:337;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:338;s:35:\"query-pagination-numbers/editor.css\";i:339;s:39:\"query-pagination-numbers/editor.min.css\";i:340;s:31:\"query-pagination/editor-rtl.css\";i:341;s:35:\"query-pagination/editor-rtl.min.css\";i:342;s:27:\"query-pagination/editor.css\";i:343;s:31:\"query-pagination/editor.min.css\";i:344;s:30:\"query-pagination/style-rtl.css\";i:345;s:34:\"query-pagination/style-rtl.min.css\";i:346;s:26:\"query-pagination/style.css\";i:347;s:30:\"query-pagination/style.min.css\";i:348;s:25:\"query-title/style-rtl.css\";i:349;s:29:\"query-title/style-rtl.min.css\";i:350;s:21:\"query-title/style.css\";i:351;s:25:\"query-title/style.min.css\";i:352;s:20:\"query/editor-rtl.css\";i:353;s:24:\"query/editor-rtl.min.css\";i:354;s:16:\"query/editor.css\";i:355;s:20:\"query/editor.min.css\";i:356;s:19:\"query/style-rtl.css\";i:357;s:23:\"query/style-rtl.min.css\";i:358;s:15:\"query/style.css\";i:359;s:19:\"query/style.min.css\";i:360;s:19:\"quote/style-rtl.css\";i:361;s:23:\"quote/style-rtl.min.css\";i:362;s:15:\"quote/style.css\";i:363;s:19:\"quote/style.min.css\";i:364;s:19:\"quote/theme-rtl.css\";i:365;s:23:\"quote/theme-rtl.min.css\";i:366;s:15:\"quote/theme.css\";i:367;s:19:\"quote/theme.min.css\";i:368;s:23:\"read-more/style-rtl.css\";i:369;s:27:\"read-more/style-rtl.min.css\";i:370;s:19:\"read-more/style.css\";i:371;s:23:\"read-more/style.min.css\";i:372;s:18:\"rss/editor-rtl.css\";i:373;s:22:\"rss/editor-rtl.min.css\";i:374;s:14:\"rss/editor.css\";i:375;s:18:\"rss/editor.min.css\";i:376;s:17:\"rss/style-rtl.css\";i:377;s:21:\"rss/style-rtl.min.css\";i:378;s:13:\"rss/style.css\";i:379;s:17:\"rss/style.min.css\";i:380;s:21:\"search/editor-rtl.css\";i:381;s:25:\"search/editor-rtl.min.css\";i:382;s:17:\"search/editor.css\";i:383;s:21:\"search/editor.min.css\";i:384;s:20:\"search/style-rtl.css\";i:385;s:24:\"search/style-rtl.min.css\";i:386;s:16:\"search/style.css\";i:387;s:20:\"search/style.min.css\";i:388;s:20:\"search/theme-rtl.css\";i:389;s:24:\"search/theme-rtl.min.css\";i:390;s:16:\"search/theme.css\";i:391;s:20:\"search/theme.min.css\";i:392;s:24:\"separator/editor-rtl.css\";i:393;s:28:\"separator/editor-rtl.min.css\";i:394;s:20:\"separator/editor.css\";i:395;s:24:\"separator/editor.min.css\";i:396;s:23:\"separator/style-rtl.css\";i:397;s:27:\"separator/style-rtl.min.css\";i:398;s:19:\"separator/style.css\";i:399;s:23:\"separator/style.min.css\";i:400;s:23:\"separator/theme-rtl.css\";i:401;s:27:\"separator/theme-rtl.min.css\";i:402;s:19:\"separator/theme.css\";i:403;s:23:\"separator/theme.min.css\";i:404;s:24:\"shortcode/editor-rtl.css\";i:405;s:28:\"shortcode/editor-rtl.min.css\";i:406;s:20:\"shortcode/editor.css\";i:407;s:24:\"shortcode/editor.min.css\";i:408;s:24:\"site-logo/editor-rtl.css\";i:409;s:28:\"site-logo/editor-rtl.min.css\";i:410;s:20:\"site-logo/editor.css\";i:411;s:24:\"site-logo/editor.min.css\";i:412;s:23:\"site-logo/style-rtl.css\";i:413;s:27:\"site-logo/style-rtl.min.css\";i:414;s:19:\"site-logo/style.css\";i:415;s:23:\"site-logo/style.min.css\";i:416;s:27:\"site-tagline/editor-rtl.css\";i:417;s:31:\"site-tagline/editor-rtl.min.css\";i:418;s:23:\"site-tagline/editor.css\";i:419;s:27:\"site-tagline/editor.min.css\";i:420;s:25:\"site-title/editor-rtl.css\";i:421;s:29:\"site-title/editor-rtl.min.css\";i:422;s:21:\"site-title/editor.css\";i:423;s:25:\"site-title/editor.min.css\";i:424;s:24:\"site-title/style-rtl.css\";i:425;s:28:\"site-title/style-rtl.min.css\";i:426;s:20:\"site-title/style.css\";i:427;s:24:\"site-title/style.min.css\";i:428;s:26:\"social-link/editor-rtl.css\";i:429;s:30:\"social-link/editor-rtl.min.css\";i:430;s:22:\"social-link/editor.css\";i:431;s:26:\"social-link/editor.min.css\";i:432;s:27:\"social-links/editor-rtl.css\";i:433;s:31:\"social-links/editor-rtl.min.css\";i:434;s:23:\"social-links/editor.css\";i:435;s:27:\"social-links/editor.min.css\";i:436;s:26:\"social-links/style-rtl.css\";i:437;s:30:\"social-links/style-rtl.min.css\";i:438;s:22:\"social-links/style.css\";i:439;s:26:\"social-links/style.min.css\";i:440;s:21:\"spacer/editor-rtl.css\";i:441;s:25:\"spacer/editor-rtl.min.css\";i:442;s:17:\"spacer/editor.css\";i:443;s:21:\"spacer/editor.min.css\";i:444;s:20:\"spacer/style-rtl.css\";i:445;s:24:\"spacer/style-rtl.min.css\";i:446;s:16:\"spacer/style.css\";i:447;s:20:\"spacer/style.min.css\";i:448;s:20:\"table/editor-rtl.css\";i:449;s:24:\"table/editor-rtl.min.css\";i:450;s:16:\"table/editor.css\";i:451;s:20:\"table/editor.min.css\";i:452;s:19:\"table/style-rtl.css\";i:453;s:23:\"table/style-rtl.min.css\";i:454;s:15:\"table/style.css\";i:455;s:19:\"table/style.min.css\";i:456;s:19:\"table/theme-rtl.css\";i:457;s:23:\"table/theme-rtl.min.css\";i:458;s:15:\"table/theme.css\";i:459;s:19:\"table/theme.min.css\";i:460;s:23:\"tag-cloud/style-rtl.css\";i:461;s:27:\"tag-cloud/style-rtl.min.css\";i:462;s:19:\"tag-cloud/style.css\";i:463;s:23:\"tag-cloud/style.min.css\";i:464;s:28:\"template-part/editor-rtl.css\";i:465;s:32:\"template-part/editor-rtl.min.css\";i:466;s:24:\"template-part/editor.css\";i:467;s:28:\"template-part/editor.min.css\";i:468;s:27:\"template-part/theme-rtl.css\";i:469;s:31:\"template-part/theme-rtl.min.css\";i:470;s:23:\"template-part/theme.css\";i:471;s:27:\"template-part/theme.min.css\";i:472;s:30:\"term-description/style-rtl.css\";i:473;s:34:\"term-description/style-rtl.min.css\";i:474;s:26:\"term-description/style.css\";i:475;s:30:\"term-description/style.min.css\";i:476;s:27:\"text-columns/editor-rtl.css\";i:477;s:31:\"text-columns/editor-rtl.min.css\";i:478;s:23:\"text-columns/editor.css\";i:479;s:27:\"text-columns/editor.min.css\";i:480;s:26:\"text-columns/style-rtl.css\";i:481;s:30:\"text-columns/style-rtl.min.css\";i:482;s:22:\"text-columns/style.css\";i:483;s:26:\"text-columns/style.min.css\";i:484;s:19:\"verse/style-rtl.css\";i:485;s:23:\"verse/style-rtl.min.css\";i:486;s:15:\"verse/style.css\";i:487;s:19:\"verse/style.min.css\";i:488;s:20:\"video/editor-rtl.css\";i:489;s:24:\"video/editor-rtl.min.css\";i:490;s:16:\"video/editor.css\";i:491;s:20:\"video/editor.min.css\";i:492;s:19:\"video/style-rtl.css\";i:493;s:23:\"video/style-rtl.min.css\";i:494;s:15:\"video/style.css\";i:495;s:19:\"video/style.min.css\";i:496;s:19:\"video/theme-rtl.css\";i:497;s:23:\"video/theme-rtl.min.css\";i:498;s:15:\"video/theme.css\";i:499;s:19:\"video/theme.min.css\";}}','yes'),(130,'ai1wm_secret_key','bug1t6lG8ZmL','yes'),(131,'wp_cli_login','{\"endpoint\":\"767350df\",\"version\":\"^1.2\"}','yes'),(135,'ai1wmue_plugin_key','467437d2-35c0-41f1-b8e7-2b657efb466e','yes'),(140,'can_compress_scripts','0','yes'),(153,'_site_transient_ai1wm_last_check_for_updates','1714572715','no'),(154,'ai1wm_updater','a:1:{s:43:\"all-in-one-wp-migration-unlimited-extension\";a:13:{s:4:\"name\";s:19:\"Unlimited Extension\";s:4:\"slug\";s:19:\"unlimited-extension\";s:8:\"homepage\";s:51:\"https://servmask.com/extensions/unlimited-extension\";s:13:\"download_link\";s:29:\"https://servmask.com/purchase\";s:7:\"version\";s:4:\"2.57\";s:6:\"author\";s:8:\"ServMask\";s:15:\"author_homepage\";s:20:\"https://servmask.com\";s:8:\"sections\";a:1:{s:11:\"description\";s:266:\"<ul class=\"description\"><li>Remove upload limits</li><li>Use on any number of websites that you own</li><li>Restore backup from server</li><li>Reset Hub: Reset tools for efficient site management new</li><li>WP CLI commands included</li><li>Premium support</li></ul>\";}s:7:\"banners\";a:2:{s:3:\"low\";s:65:\"https://servmask.com/img/products/unlimited-extension-772x250.png\";s:4:\"high\";s:66:\"https://servmask.com/img/products/unlimited-extension-1544x500.png\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:65:\"https://servmask.com/img/products/unlimited-extension-128x128.png\";s:2:\"2x\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";s:7:\"default\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";}s:6:\"rating\";i:99;s:11:\"num_ratings\";i:509;s:10:\"downloaded\";i:50188;}}','yes'),(155,'recently_activated','a:3:{s:29:\"otter-blocks/otter-blocks.php\";i:1707206655;s:27:\"optimole-wp/optimole-wp.php\";i:1707206647;s:43:\"wp-maintenance-mode/wp-maintenance-mode.php\";i:1707206639;}','yes'),(162,'elementor_active_kit','27','yes'),(163,'elementor_font_display','swap','yes'),(166,'elementor_version','3.21.4','yes'),(167,'elementor_install_history','a:3:{s:6:\"3.19.1\";i:1707152997;s:6:\"3.19.2\";i:1707969933;s:6:\"3.21.4\";i:1714572719;}','yes'),(168,'elementor_events_db_version','1.0.0','no'),(169,'elementor_onboarded','1','yes'),(170,'_elementor_installed_time','1707153032','yes'),(171,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:19:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:19:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:19:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:19:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:19:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:19:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:19:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:19:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:19:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:19:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:19:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:19:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:19:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:19:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:19:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:19:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:19:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:19:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:19:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:19:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:19:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:19:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:19:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:19:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:19:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:19:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:19:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:19:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:19:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:19:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:19:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:19:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:19:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:19:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:19:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:19:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:19:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:19:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:19:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:19:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:19:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:19:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:19:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:19:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:19:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:19:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:19:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:19:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:19:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:19:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:19:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:19:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:19:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:19:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:19:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:19:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:19:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:19:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:19:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:19:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:19:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:19:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:19:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:19:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:19:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:19:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:19:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:19:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:19:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:19:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:19:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:19:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:19:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:19:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:19:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:19:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:19:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:19:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:19:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:19:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:19:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:19:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:19:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:19:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:19:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:19:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:19:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:19:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:19:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:19:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:19:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:19:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:19:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:19:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:19:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:19:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:19:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:19:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:19:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:19:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:19:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:19:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:19:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:19:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:19:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:19:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:19:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:19:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:19:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:19:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:19:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:19:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:19:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:19:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:19:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:19:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:19:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:19:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:19:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:19:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:19:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:19:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:19:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:19:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:19:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:19:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:19:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:19:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:19:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:19:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:19:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:19:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:19:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:19:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:19:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:19:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:19:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:19:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:19:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:19:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:19:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:19:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:19:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:19:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:19:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:19:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:19:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:19:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:19:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:19:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:19:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:19:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:19:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:19:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:19:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:19:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:19:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:19:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:19:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:19:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:19:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:19:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:19:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:19:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:19:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:19:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:19:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:19:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:19:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:19:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:19:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:19:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:19:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:19:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:19:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:19:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:19:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:19:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:19:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:19:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:19:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:19:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:19:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:19:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:19:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:19:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:19:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:19:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:19:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:19:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:19:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:19:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:19:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:19:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:19:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:19:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:19:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:19:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:19:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:19:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:19:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:19:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:19:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:19:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:19:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:19:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:19:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:19:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:19:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:19:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:19:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:19:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:19:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:19:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:19:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:19:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:19:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:19:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:19:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:19:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:19:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:19:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:19:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:19:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:19:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:19:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:19:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:19:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:19:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:19:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:19:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:19:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:19:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:19:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:19:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:19:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:19:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:19:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:19:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:19:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:19:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:19:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:19:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:19:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:19:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:19:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:19:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:19:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:19:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:19:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:19:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:19:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:19:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:19:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:19:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:19:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:19:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:19:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:19:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:19:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:19:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:19:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:19:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:19:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:19:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:19:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:19:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:19:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:19:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:19:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:19:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:19:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:19:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:19:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:19:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:19:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:19:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:19:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:19:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:19:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:19:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:19:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:19:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:19:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:19:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:19:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:19:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:19:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:19:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:19:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:19:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:19:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:19:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:19:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:19:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:19:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:19:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:19:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:19:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:19:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:19:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:19:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:19:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:19:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:19:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:19:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:19:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:19:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:19:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:19:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:19:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:19:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:19:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:19:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:19:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:19:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:19:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:19:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:19:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:19:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:19:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:19:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:19:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:19:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:19:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:19:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:19:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:19:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:19:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:19:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:19:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:19:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:19:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:19:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:19:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:19:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:19:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:19:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:19:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:19:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:19:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:19:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:19:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:19:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:19:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:19:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:19:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:19:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:19:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:19:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:19:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:19:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:19:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:19:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:19:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:19:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:19:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:19:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:19:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:19:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:19:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:19:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:19:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:19:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:19:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:19:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:19:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:19:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:19:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:19:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:19:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:19:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:19:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:19:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:19:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:19:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:19:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:19:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:19:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:19:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:19:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:19:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:19:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:19:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:19:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:19:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:19:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:19:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:19:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:19:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:19:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:19:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:19:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:19:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:19:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:19:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:19:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:19:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:19:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:19:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:19:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:19:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:19:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:19:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:19:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:19:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:19:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:19:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:19:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:19:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:19:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:19:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:19:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:19:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:19:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:19:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:19:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:19:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:19:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:19:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:19:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:19:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:19:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:19:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:19:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:19:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:19:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:19:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:19:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:19:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:19:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:19:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:19:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:19:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:19:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:19:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:19:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:19:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:19:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:19:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:19:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:19:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:19:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:19:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:19:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:19:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:19:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:19:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:19:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:19:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:19:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:19:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:19:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:19:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:19:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:19:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:19:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:19:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:19:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:19:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:19:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:19:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:19:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:19:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:19:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:19:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:19:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:19:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:19:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:19:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:19:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:19:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:19:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:19:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:19:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:19:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:19:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:19:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:19:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:19:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:19:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:19:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:19:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:19:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:19:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:19:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:19:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:19:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:19:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:19:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:19:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:19:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:19:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:19:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:19:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:19:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:19:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:19:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:19:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:19:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:19:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:19:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:19:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:19:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:19:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:19:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:19:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:19:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:19:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:19:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:19:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:19:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:19:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:19:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:19:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:19:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:19:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:19:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:19:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:19:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:19:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:19:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:19:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:19:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:19:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:19:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:19:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:19:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:19:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:19:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:19:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:19:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:19:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:19:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:19:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:19:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:19:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:19:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:19:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:19:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:19:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:19:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:19:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:19:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:19:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:19:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:19:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:19:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:19:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:19:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:19:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:19:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:19:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:19:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:19:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:19:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:19:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:19:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:19:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:19:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:19:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:19:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:19:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:19:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:19:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:19:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:19:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:19:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:19:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:19:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:19:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:19:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:19:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:19:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:19:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:19:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:19:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:19:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:19:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:19:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:19:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:19:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:19:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:19:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:19:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:19:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:19:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:19:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:19:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:19:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:19:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:19:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:19:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:19:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:19:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:19:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:19:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:19:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:19:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:19:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:19:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:19:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:19:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:19:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:19:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:19:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:19:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:19:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:19:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:19:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:19:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:19:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:19:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:19:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:19:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:19:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:19:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:19:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:19:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:19:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:19:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:19:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:19:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:19:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:19:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:19:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:19:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:19:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:19:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:19:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:19:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:19:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:19:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:19:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:19:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:19:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:19:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:19:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:19:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:19:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:19:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:19:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:19:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:19:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:19:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:19:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:19:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:19:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:19:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:19:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:19:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:19:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:19:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:19:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:19:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:19:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:19:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:19:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:19:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:19:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:19:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:19:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:19:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:19:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:19:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:19:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:19:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:19:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:19:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:19:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:19:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:19:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:19:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:19:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:19:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:19:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:19:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:19:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:19:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:19:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:19:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:19:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:19:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:19:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:19:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:19:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:19:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:19:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:19:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:19:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:19:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:19:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:19:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:19:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:19:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:19:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:19:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:19:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:19:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:19:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:19:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:19:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:19:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:19:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:19:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:19:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:19:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:19:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:19:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:19:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:19:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:19:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:19:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:19:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:19:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:19:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:19:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:19:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:19:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:19:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:19:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:19:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:19:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:19:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:19:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:19:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:19:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:19:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:19:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:19:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:19:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:19:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:19:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:19:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:19:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:19:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:19:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:19:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:19:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:19:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:19:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:19:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:19:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:19:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:19:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:19:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:19:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:19:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:19:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:19:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:19:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:19:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:19:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:19:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:19:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:19:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:19:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:19:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:19:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:19:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:19:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:19:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:19:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:19:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:19:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:19:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:19:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:19:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:19:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:19:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:19:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:19:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:19:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:19:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:19:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:19:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:19:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:19:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:19:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:19:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:19:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:19:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:19:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:19:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:19:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:19:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:19:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:19:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:19:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:19:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:19:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:19:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:19:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:19:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:19:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:19:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:19:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:19:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:19:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:19:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:19:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:19:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:19:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:19:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:19:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:19:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:19:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:19:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:19:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:19:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:19:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:19:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:19:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:19:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:19:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:19:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:19:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:19:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:19:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:19:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:19:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:19:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:19:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(172,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:73:\"AI 0.4 Release: Context Boosts A 58% Content Uplift for Improved Workflow\";s:7:\"excerpt\";s:163:\"Hitting creative walls & code roadblocks? Elementor AI\'s update creates a future where AI writes captivating copy with a 58% approval boost... what else can it do?\";s:7:\"created\";i:1716217283;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:155:\"https://elementor.com/blog/elementor-ai-enhanced-workflow-and-high-quality-results/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:97:\"Introducing Elementor 3.21: Loop Taxonomy Query for Listings, Performance Improvements, and More!\";s:7:\"excerpt\";s:160:\"Version 3.21 includes the ability to build listings for your categories and tags and significant performance improvements alongside an exciting new AI feature. \";s:7:\"created\";i:1714559068;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:152:\"https://elementor.com/blog/elementor-321-taxonomy-query-performance-improvement/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:71:\"6 Best WordPress Image Optimization Plugins of 2024 (+Real Image Tests)\";s:7:\"excerpt\";s:116:\"Explore the top 6 WordPress image optimization plugins of 2024 for faster site speed and better SEO with real tests.\";s:7:\"created\";i:1712656602;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:126:\"https://elementor.com/blog/image-optimization-plugins/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(177,'theme_mods_twentytwentyfour','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1707153073;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(178,'current_theme','Hello Elementor','yes'),(179,'theme_mods_hello-elementor','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";i:4;}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:188;}','yes'),(180,'theme_switched','','yes'),(181,'hello_theme_version','3.0.1','yes'),(182,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1717103324;s:7:\"checked\";a:4:{s:15:\"hello-elementor\";s:5:\"3.0.1\";s:16:\"twentytwentyfour\";s:3:\"1.1\";s:17:\"twentytwentythree\";s:3:\"1.4\";s:15:\"twentytwentytwo\";s:3:\"1.7\";}s:8:\"response\";a:1:{s:15:\"hello-elementor\";a:6:{s:5:\"theme\";s:15:\"hello-elementor\";s:11:\"new_version\";s:5:\"3.0.2\";s:3:\"url\";s:45:\"https://wordpress.org/themes/hello-elementor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/hello-elementor.3.0.2.zip\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.3\";}}s:9:\"no_update\";a:3:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.1.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.4.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.7.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(187,'_elementor_notifications_data','a:2:{s:7:\"timeout\";i:1709733930;s:5:\"value\";s:7046:\"[{\"id\":\"display-conditions-3.19\",\"title\":\"Create Comprehensive Dynamic Visitor Experiences with Display Conditions\",\"description\":\"Customize visitor experiences by setting display conditions for your content based on parameters like the time and date, the visitor\'s identity, the type of page they\'re viewing, and more.\",\"topic\":\"New in Elementor Pro 3.19\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/display-conditions-3.19.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/elementor.com\\/blog\\/elementor-319-display-conditions-akismet-integration\\/\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"display-conditions-3.19\",\"title\":\"Create Personalized Visitor Experiences\",\"description\":\"Choose when to display certain content on your website according to conditions such as the visitor\\u2019s identity, the timing of their visit, the page they are viewing, and the URL address they came from.\",\"topic\":\"New in Elementor Pro 3.19\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/display-conditions-3.19.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/elementor.com\\/blog\\/elementor-319-display-conditions-akismet-integration\\/\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-dispaly-conditions\\/\"},{\"id\":\"element-manager-permissions-3.19\",\"title\":\"Streamline Collaboration by Setting Permissions to Widgets in the Element Manager\",\"description\":\"Customize the widgets displayed in the Widget Panel for each user based on their assigned roles.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/element-manager-role-permissions-3.19.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"element-manager-permissions-3.19\",\"title\":\"Streamline Collaboration by Setting Permissions to Widgets in the Element Manager\",\"description\":\"Customize the widgets displayed in the Widget Panel for each user based on their assigned roles.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/element-manager-role-permissions-3.19.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-element-manager-permission\\/\"},{\"id\":\"akismet-3.19\",\"title\":\"Protect Forms From Spam by Seamlessly Integrating Akismet Spam Filter\",\"description\":\"Akismet works in the background, using AI technology to detect spam with 99.9 percent accuracy without any additional interactions required by your visitors.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/akismet-3.19.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"akismet-3.19\",\"title\":\"Protect Forms From Spam by Seamlessly Integrating Akismet Spam Filter\",\"description\":\"Akismet works in the background, using AI technology to detect spam with 99.9 percent accuracy without any additional interactions required by your visitors.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/akismet-3.19.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-akismet\\/\"},{\"id\":\"image-optimizer-3.19\",\"title\":\"Effortlessly optimize images for a stunning, high-speed website with the Image Optimizer plugin.\",\"description\":\"Image Optimizer perfectly balances between image quality and performance to boost your website.  Resize, compress, and convert images to WebP , for faster loading times and and better user experience.\",\"topic\":\"Image Optimizer Plugin by Elementor\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/image-optimizer-3.19.png\",\"chipTags\":[\"New plugin\"],\"cta\":\"Get the Image Optimizer\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/io-notification-wp-dash-learn-more\\/\",\"conditions\":[[{\"type\":\"plugin\",\"operator\":\"!=\",\"plugin\":\"image-optimization\\/image-optimization.php\"}]]},{\"id\":\"ai-variations-in-template-library-3.19\",\"title\":\"Inspire Your Creation with Web-Based Container Generation\",\"description\":\"Use a URL address to generate containers based on a reference from the open web.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ai-variations-in-template-library-3.19.png\",\"chipPlan\":\"Elementor AI\",\"chipTags\":[\"New Feature\"],\"conditions\":[[{\"type\":\"introduction_meta\",\"meta\":\"ai_get_started\"}]],\"cta\":\"Get Elementor AI\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/ai-notification-web-based-container\\/\"},{\"id\":\"ai-variations-in-template-library-3.19\",\"title\":\"Inspire Your Creation with Web-Based Container Generation\",\"description\":\"Use a URL address to generate containers based on a reference from the open web.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/ai-variations-in-template-library-3.19.png\",\"chipPlan\":\"Elementor AI\",\"chipTags\":[\"New Feature\"],\"cta\":\"Start Free Trial\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/ai-notification-web-based-container\\/\"},{\"id\":\"5-star-rating-prompt\",\"title\":\"Love the New Features? Let Us Know with 5 Stars!\",\"description\":\"Help spread the word by telling the world what you love about Elementor.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/5-star-rating-prompt.png\",\"cta\":\"Leave a Review\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/wp-dash-notification-five-stars\\/\"},{\"id\":\"taxonomy-filter-multi-select-3.18\",\"title\":\"Enhance the Visitor Experience of Listings with Taxonomy Filter Multi-Select Capabilities\",\"description\":\"Help visitors find the products and posts they\'re looking for by filter listings based on multiple categories or tags from the same taxonomy filter.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/taxonomy-filter-multi-select-3.18.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/elementor.com\\/blog\\/elementor-318-element-manager-multi-selection-taxonomy-filter\\/#:~:text=%5BPro%5D%20Enhanced%20Taxonomy%20Filter%20with%20Multi%2DSelection\",\"readMoreText\":\"Learn More\",\"conditions\":[[{\"type\":\"plugin\",\"plugin\":\"elementor-pro\\/elementor-pro.php\"}]]},{\"id\":\"taxonomy-filter-multi-select-3.18\",\"title\":\"Enhance the Visitor Experience of Listings with Taxonomy Filter Multi-Select Capabilities\",\"description\":\"Help visitors find the products and posts they\'re looking for by filter listings based on multiple categories or tags from the same taxonomy filter.\",\"imageSrc\":\"https:\\/\\/assets.elementor.com\\/notifications\\/v1\\/images\\/taxonomy-filter-multi-select-3.18.png\",\"chipPlan\":\"Pro\",\"chipTags\":[\"New Feature\"],\"link\":\"https:\\/\\/elementor.com\\/blog\\/elementor-318-element-manager-multi-selection-taxonomy-filter\\/#:~:text=%5BPro%5D%20Enhanced%20Taxonomy%20Filter%20with%20Multi%2DSelection\",\"readMoreText\":\"Learn More\",\"cta\":\"Upgrade\",\"ctaLink\":\"https:\\/\\/go.elementor.com\\/go-pro-notification-taxonomy-filter\\/\"}]\";}','no'),(196,'hfe_plugin_is_activated','yes','yes'),(197,'_hfe_db_version','1.6.35','yes'),(198,'bsf_analytics_installed_time','1707153806','no'),(205,'WPLANG','','yes'),(206,'new_admin_email','wp@dxpsites.com','yes'),(207,'bsf_analytics_optin','no','yes'),(241,'wpmm_show_migration','0','yes'),(242,'wpmm_new_look','1','yes'),(243,'wpmm_fresh_install','','yes'),(246,'wpmm_activated','1707206503','yes'),(247,'wp_maintenance_mode_install','1707206504','yes'),(252,'wpmm_settings_redirect','0','yes'),(272,'themeisle_sdk_promotions_otter_installed','1','yes'),(273,'otter_reference_key','wp-maintenance-mode','yes'),(275,'otter_blocks_install','1707206564','yes'),(276,'themeisle_blocks_db_version','2.6.2','yes'),(278,'themeisle_blocks_settings_redirect','','yes'),(281,'optml-version','3.12.4','yes'),(284,'optml_settings','a:50:{s:7:\"api_key\";s:0:\"\";s:12:\"service_data\";s:0:\"\";s:12:\"cache_buster\";s:0:\"\";s:19:\"cache_buster_assets\";s:0:\"\";s:19:\"cache_buster_images\";s:0:\"\";s:3:\"cdn\";s:8:\"disabled\";s:14:\"admin_bar_item\";s:7:\"enabled\";s:8:\"lazyload\";s:7:\"enabled\";s:5:\"scale\";s:8:\"disabled\";s:20:\"network_optimization\";s:8:\"disabled\";s:20:\"lazyload_placeholder\";s:7:\"enabled\";s:11:\"bg_replacer\";s:7:\"enabled\";s:14:\"video_lazyload\";s:7:\"enabled\";s:13:\"retina_images\";s:8:\"disabled\";s:16:\"limit_dimensions\";s:7:\"enabled\";s:12:\"limit_height\";i:1080;s:11:\"limit_width\";i:1920;s:12:\"resize_smart\";s:8:\"disabled\";s:9:\"no_script\";s:8:\"disabled\";s:7:\"filters\";a:0:{}s:11:\"cloud_sites\";a:2:{s:3:\"all\";s:5:\"false\";s:32:\"ls-narendraram.in8.cdn-alpha.com\";s:4:\"true\";}s:8:\"watchers\";s:0:\"\";s:7:\"quality\";s:4:\"auto\";s:5:\"wm_id\";i:-1;s:10:\"wm_opacity\";i:1;s:11:\"wm_position\";s:4:\"soea\";s:4:\"wm_x\";i:0;s:4:\"wm_y\";i:0;s:8:\"wm_scale\";i:0;s:14:\"image_replacer\";s:7:\"enabled\";s:12:\"img_to_video\";s:8:\"disabled\";s:10:\"css_minify\";s:7:\"enabled\";s:9:\"js_minify\";s:8:\"disabled\";s:13:\"report_script\";s:8:\"disabled\";s:4:\"avif\";s:8:\"disabled\";s:11:\"autoquality\";s:7:\"enabled\";s:15:\"native_lazyload\";s:8:\"disabled\";s:13:\"offload_media\";s:8:\"disabled\";s:12:\"cloud_images\";s:7:\"enabled\";s:14:\"strip_metadata\";s:7:\"enabled\";s:20:\"skip_lazyload_images\";s:1:\"2\";s:19:\"defined_image_sizes\";a:0:{}s:15:\"banner_frontend\";s:8:\"disabled\";s:17:\"offloading_status\";s:8:\"disabled\";s:15:\"rollback_status\";s:8:\"disabled\";s:11:\"best_format\";s:8:\"disabled\";s:21:\"offload_limit_reached\";s:8:\"disabled\";s:13:\"offload_limit\";i:50000;s:17:\"placeholder_color\";s:0:\"\";s:26:\"show_offload_finish_notice\";s:0:\"\";}','no'),(285,'optml_defaults_updated','yes','yes'),(286,'optimole_wp_install','1707206576','yes'),(288,'optml_notice_optin','yes','yes'),(289,'wpmm_page_category','coming-soon','yes'),(299,'elementor_log','a:14:{s:32:\"7eba2ec85cd008299e3ea5c46e82492f\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"814672\";s:7:\"\0*\0file\";s:104:\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.19.1\";s:7:\"\0*\0line\";s:1:\"3\";s:7:\"\0*\0date\";s:19:\"2024-02-06 16:59:40\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:67:\"Cannot read properties of undefined (reading &#039;localized&#039;)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:4;s:14:\"\0*\0times_dates\";a:4:{i:0;s:19:\"2024-02-06 16:59:40\";i:1;s:19:\"2024-02-06 16:59:40\";i:2;s:19:\"2024-02-06 16:59:40\";i:3;s:19:\"2024-02-06 16:59:40\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1707238780\";s:7:\"message\";s:57:\"Cannot read properties of undefined (reading \'localized\')\";s:3:\"url\";s:104:\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/js/editor.min.js?ver=3.19.1\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"814672\";}}s:32:\"79c4110c4e1e11e94089049b84a0964d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-12 17:41:00\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.1\";s:2:\"to\";s:6:\"3.19.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-12 17:41:00\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.1\";s:2:\"to\";s:6:\"3.19.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"1a48d9e9962fdab7a00bd435a4e1ad19\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:99:\"/storage/v11800/ls-narendraram/public_html/wp-content/plugins/elementor/includes/managers/image.php\";s:7:\"\0*\0line\";i:113;s:7:\"\0*\0date\";s:19:\"2024-02-13 17:24:09\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:51:\"Trying to access array offset on value of type bool\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-13 17:24:09\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:51:\"Trying to access array offset on value of type bool\";s:4:\"file\";s:99:\"/storage/v11800/ls-narendraram/public_html/wp-content/plugins/elementor/includes/managers/image.php\";s:4:\"line\";i:113;s:5:\"trace\";b:1;}}s:32:\"7fa94379b1eff2b3c1970c07060d3116\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:6:\"108027\";s:7:\"\0*\0file\";s:105:\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/js/web-cli.min.js?ver=3.19.2\";s:7:\"\0*\0line\";s:1:\"3\";s:7:\"\0*\0date\";s:19:\"2024-02-14 07:20:02\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:37:\"Routes: `library/sections` not found.\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-14 07:20:02\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1707895202\";s:7:\"message\";s:37:\"Routes: `library/sections` not found.\";s:3:\"url\";s:105:\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/js/web-cli.min.js?ver=3.19.2\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:6:\"108027\";}}s:32:\"fadd01e884d7f6dc150f2603254bf5e2\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-15 09:35:33\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-15 09:35:33\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"34c0e407dd275a17436d22d36b2b1282\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-15 09:35:33\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-15 09:35:33\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"6f36c1dbad0b1fa917b4582a3d067a7b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-15 09:35:33\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-15 09:35:33\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"a3135b87917972050b3cb2d47f80914e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-15 09:35:33\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.1\";s:2:\"to\";s:6:\"3.19.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-15 09:35:33\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.1\";s:2:\"to\";s:6:\"3.19.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"5670d632475d0bbd4672764d2e630eca\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-27 06:22:15\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.2\";s:2:\"to\";s:6:\"3.19.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-27 06:22:15\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.2\";s:2:\"to\";s:6:\"3.19.3\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"6a2b08602b161089375e1e8643338cab\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-05-01 19:41:59\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-05-01 19:41:59\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"f5aaa82871338ffdc23db2b19caae4c0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-05-01 19:41:59\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-05-01 19:41:59\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"37383ecf179657f9b994cae9423ddcef\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-05-01 19:41:59\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-05-01 19:41:59\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"43fa2cc1b384e916ad35d60478dfe9b6\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-05-01 19:41:59\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.2\";s:2:\"to\";s:6:\"3.21.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-05-01 19:41:59\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.2\";s:2:\"to\";s:6:\"3.21.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"9b1dc2e5f12a774b91377ef1d4c495af\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-05-09 02:51:33\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.4\";s:2:\"to\";s:6:\"3.21.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-05-09 02:51:33\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.21.4\";s:2:\"to\";s:6:\"3.21.5\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}}','no'),(322,'template_kit_import_version','1.0.15','yes'),(323,'template_kit_import_install_time','1707304696','yes'),(327,'elementskit-lite__banner_last_check','1709699610','yes'),(328,'elementskit-lite__banner_data','O:8:\"stdClass\":10:{s:8:\"10011059\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011059;s:5:\"title\";s:34:\"Wpmet Holiday Notice Ownpages 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1702512000;s:3:\"end\";i:1704412800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:30:\"https://wpmet.com/hol23-notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:538:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">holiday sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $180 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011058\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011058;s:5:\"title\";s:35:\"Wpmet Holiday Notice Dashboard 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1702512000;s:3:\"end\";i:1704412800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:30:\"https://wpmet.com/hol23-notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:538:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">holiday sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $180 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011039\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011039;s:5:\"title\";s:32:\"Wpmet BFCM Notice Dashboard 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1700611200;s:3:\"end\";i:1701907200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:36:\"https://wpmet.com/notice/blackfriday\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:543:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Black friday sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $240 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 40% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/12/40-OFF-getgenie.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10011038\";O:8:\"stdClass\":7:{s:2:\"id\";i:10011038;s:5:\"title\";s:31:\"Wpmet BFCM Notice Own Page 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1700611200;s:3:\"end\";i:1701907200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:36:\"https://wpmet.com/notice/blackfriday\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:543:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Black friday sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $240 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 40% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:73:\"https://api.wpmet.com/auth/wp-content/uploads/2022/12/40-OFF-getgenie.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010872\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010872;s:5:\"title\";s:33:\"Wpmet Notice Halloween 23 Ownpage\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1698192000;s:3:\"end\";i:1699574400;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/notice/hallo23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:540:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Halloween sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $210 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:65:\"https://api.wpmet.com/auth/wp-content/uploads/2023/04/genie-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010871\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010871;s:5:\"title\";s:35:\"Wpmet Notice Halloween 23 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1698192000;s:3:\"end\";i:1699574400;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/notice/hallo23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:540:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Halloween sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $210 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:65:\"https://api.wpmet.com/auth/wp-content/uploads/2023/04/genie-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010506\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010506;s:5:\"title\";s:32:\"Wpmet Summer sale 2023 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010508\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010508;s:5:\"title\";s:31:\"Wpmet Summer sale 2023 own page\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010418\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010418;s:5:\"title\";s:32:\"Wpmet Summer Ownpage Notice 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1685577600;s:3:\"end\";i:1686787200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:26:\"https://wpmet.com/birthday\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:539:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Birthday sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $221 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 45% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2023/06/notice.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10008094\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008094;s:5:\"title\";s:24:\"GetGenie Cross Promotion\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1678492800;s:3:\"end\";i:1688083200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:35:\"https://wpmet.com/getgenie-org-page\";s:11:\"button_text\";s:14:\"Get Yours Now!\";s:11:\"notice_body\";s:766:\"<h2>We are delighted to announce that <span style=\"color: #2471b1;\"><strong style=\"color: #2471b1; text-transform: uppercase; font-size: 14px;\">GetGenie AI is now available</strong></span>!</h2>\r\n<h4 style=\"font-size: 16px; margin-left: -2px;\"><b>Let&#039;s write your content 20x faster with AI. Also, Research </b><b>keywords</b><b>, A</b><b>nalyse your </b><b>competitors, head 2 Head analysis,  content writing with ai, and search engine ranking with NLP Keywords optimization—all within WordPress.</b> Additionally, <b>you can chat</b> with the GENIE AI about your needs.</h4>\r\n<span style=\"color: #dd0cd9;\">Join now and get <span style=\"font-weight: 400;\"><strong>1500 words for free every month</strong></span></span><span style=\"color: #dd0cd9;\">. </span>\";s:12:\"notice_image\";s:79:\"https://api.wpmet.com/auth/wp-content/uploads/2023/03/genie_compare_image_4.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:20:\"background: #e9fce5;\";s:10:\"unique_key\";s:20:\"getgenie-cross-promo\";}}}','yes'),(329,'elementskit-lite_install_date','2024-02-07 11:21:00','yes'),(334,'_elementor_settings_update_time','1707304957','yes'),(335,'elementor_cpt_support','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(336,'elementor_disable_color_schemes','yes','yes'),(337,'elementor_disable_typography_schemes','yes','yes'),(338,'elementor_allow_tracking','no','yes'),(339,'elementor_google_maps_api_key','','yes'),(340,'elementor_css_print_method','external','yes'),(341,'elementor_editor_break_lines','','yes'),(342,'elementor_unfiltered_files_upload','','yes'),(343,'elementor_google_font','1','yes'),(344,'elementor_load_fa4_shim','','yes'),(345,'elementor_meta_generator_tag','','yes'),(346,'elementor_experiment-e_font_icon_svg','default','yes'),(347,'elementor_experiment-container','default','yes'),(348,'elementor_experiment-container_grid','default','yes'),(349,'elementor_experiment-editor_v2','default','yes'),(350,'elementor_experiment-ai-layout','default','yes'),(351,'elementor_experiment-landing-pages','default','yes'),(352,'elementor_experiment-nested-elements','default','yes'),(353,'elementor_experiment-e_lazyload','default','yes'),(354,'elementor_experiment-e_optimized_assets_loading','default','yes'),(355,'elementor_experiment-e_optimized_css_loading','default','yes'),(356,'elementor_experiment-additional_custom_breakpoints','default','yes'),(357,'elementor_experiment-e_swiper_latest','default','yes'),(358,'elementor_experiment-hello-theme-header-footer','default','yes'),(359,'elementor_experiment-block_editor_assets_optimize','default','yes'),(360,'elementor_experiment-e_image_loading_optimization','default','yes'),(361,'elementor_experiment-e_global_styleguide','default','yes'),(383,'elementskit-lite__stories_last_check','1709711701','yes'),(384,'elementskit-lite__stories_data','O:8:\"stdClass\":10:{s:8:\"10011212\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011212;s:5:\"title\";s:50:\"Human First Approach to Ai Content: Best Practices\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:55:\"https://getgenie.ai/human-first-approach-to-ai-content/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011211\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011211;s:5:\"title\";s:62:\"7 Best ChatGPT Alternatives Worth Checking Out (Free and Paid)\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:46:\"https://getgenie.ai/best-chatgpt-alternatives/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011210\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011210;s:5:\"title\";s:51:\"How to Write a Cold Email for Sales: The Easy Ways!\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:46:\"https://getgenie.ai/how-to-write-a-cold-email/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011209\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011209;s:5:\"title\";s:59:\"How to Set Up WooCommerce One-click Checkout (The Easy Way)\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:56:\"https://wpmet.com/set-up-woocommerce-one-click-checkout/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011208\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011208;s:5:\"title\";s:56:\"ElementsKit vs Premium Addons: Elementor Addon Face-Off!\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:48:\"https://wpmet.com/elementskit-vs-premium-addons/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011207\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011207;s:5:\"title\";s:53:\"How to Add Frosted Glass Morphism Effect in Elementor\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:54:\"https://wpmet.com/add-elementor-glass-morphism-effect/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011203\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011203;s:5:\"title\";s:45:\"Ai for Enterprise — Things You Need to Know\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:38:\"https://getgenie.ai/ai-for-enterprise/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011202\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011202;s:5:\"title\";s:54:\"How to do Keyword Research for Blog: 5 Steps to Follow\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:56:\"https://getgenie.ai/how-to-do-keyword-research-for-blog/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011201\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011201;s:5:\"title\";s:47:\"How To Do Keyword Gap Analysis Smartly Using Ai\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:41:\"https://getgenie.ai/keyword-gap-analysis/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10011198\";O:8:\"stdClass\":9:{s:2:\"id\";i:10011198;s:5:\"title\";s:66:\"The Ultimate Gutenberg Plugins Comparison: Find Your Perfect Match\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:47:\"https://wpmet.com/gutenberg-plugins-comparison/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}}','yes'),(422,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(423,'elementskit_options','a:1:{s:17:\"megamenu_settings\";a:1:{s:15:\"menu_location_4\";a:1:{s:10:\"is_enabled\";i:0;}}}','yes'),(457,'_transient_timeout_elementskit-lite-go-pro-noti2ce','1733889941','no'),(458,'_transient_elementskit-lite-go-pro-noti2ce','1','no'),(475,'site_logo','188','yes'),(703,'category_children','a:0:{}','yes'),(745,'recovery_keys','a:0:{}','yes'),(751,'finished_updating_comment_type','1','yes'),(752,'_site_transient_timeout_php_check_2f5acf219326a8bc5331ee302b9812f4','1715177517','no'),(753,'_site_transient_php_check_2f5acf219326a8bc5331ee302b9812f4','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(754,'_transient_health-check-site-status-result','{\"good\":15,\"recommended\":2,\"critical\":0}','yes'),(757,'elementor_elementor_updater_completed','1','yes'),(758,'_transient_doing_cron','1717259032.0759880542755126953125','yes'),(781,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.5.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.5.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.5.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.5.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.5.3\";s:7:\"version\";s:5:\"6.5.3\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1717189755;s:15:\"version_checked\";s:5:\"6.5.3\";s:12:\"translations\";a:0:{}}','no'),(782,'_transient_timeout_elementor_remote_info_api_data_3.21.4','1715243926','no'),(783,'_transient_elementor_remote_info_api_data_3.21.4','a:4:{s:9:\"timestamp\";s:10:\"1715197411\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(787,'elementor_1_elementor_updater_batch_769470b0117bb5371a263712cae3','a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}}','no'),(788,'_elementor_global_css','a:7:{s:4:\"time\";i:1715209070;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:5:\"empty\";i:0;b:0;s:3:\"css\";s:0:\"\";}','yes'),(791,'_elementor_assets_data','a:2:{s:3:\"css\";a:1:{s:7:\"widgets\";a:14:{s:5:\"image\";a:2:{s:7:\"content\";s:269:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:13:\"ekit-nav-menu\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:6:\"button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:7:\"heading\";a:2:{s:7:\"content\";s:673:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:19:\"elementskit-heading\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:719:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:8:\"icon-box\";a:2:{s:7:\"content\";s:118:\"<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">\";s:7:\"version\";s:6:\"3.21.8\";}s:21:\"elementskit-image-box\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:23:\"elementskit-client-logo\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:20:\"elementskit-icon-box\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:7:\"divider\";a:2:{s:7:\"content\";s:4311:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:9:\"icon-list\";a:2:{s:7:\"content\";s:119:\"<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">\";s:7:\"version\";s:6:\"3.21.8\";}s:5:\"rform\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:12:\"social-icons\";a:2:{s:7:\"content\";s:5051:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>\";s:7:\"version\";s:6:\"3.21.8\";}}}s:3:\"svg\";a:1:{s:9:\"font-icon\";a:1:{s:12:\"fab-linkedin\";a:2:{s:7:\"content\";a:4:{s:5:\"width\";i:448;s:6:\"height\";i:512;s:4:\"path\";s:424:\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\";s:3:\"key\";s:12:\"fab-linkedin\";}s:7:\"version\";s:6:\"5.15.3\";}}}}','yes'),(831,'_transient_timeout_elementor_remote_info_api_data_3.21.5','1716253409','no'),(832,'_transient_elementor_remote_info_api_data_3.21.5','a:4:{s:9:\"timestamp\";s:10:\"1716206908\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(840,'_transient_timeout_elementor_remote_info_api_data_3.21.6','1716430977','no'),(841,'_transient_elementor_remote_info_api_data_3.21.6','a:4:{s:9:\"timestamp\";s:10:\"1716386188\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(856,'_transient_timeout_elementor_remote_info_api_data_3.21.7','1716665563','no'),(857,'_transient_elementor_remote_info_api_data_3.21.7','a:4:{s:9:\"timestamp\";s:10:\"1716620202\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(873,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1717189756;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"5.3.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:4:\"7.82\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.82.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=2990457\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=2990457\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"3.21.8\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.21.8.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3005087\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3005087\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:51:\"header-footer-elementor/header-footer-elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/header-footer-elementor\";s:4:\"slug\";s:23:\"header-footer-elementor\";s:6:\"plugin\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:11:\"new_version\";s:6:\"1.6.35\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/header-footer-elementor/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.35.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2813167\";s:3:\"svg\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2813167\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/header-footer-elementor/assets/banner-1544x500.jpg?rev=2813167\";s:2:\"1x\";s:78:\"https://ps.w.org/header-footer-elementor/assets/banner-772x250.jpg?rev=2813167\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}s:37:\"elementskit-lite/elementskit-lite.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/elementskit-lite\";s:4:\"slug\";s:16:\"elementskit-lite\";s:6:\"plugin\";s:37:\"elementskit-lite/elementskit-lite.php\";s:11:\"new_version\";s:5:\"3.1.4\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/elementskit-lite/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/elementskit-lite.3.1.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/elementskit-lite/assets/icon-256x256.gif?rev=2518175\";s:2:\"1x\";s:69:\"https://ps.w.org/elementskit-lite/assets/icon-128x128.gif?rev=2518175\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/elementskit-lite/assets/banner-1544x500.png?rev=2118488\";s:2:\"1x\";s:71:\"https://ps.w.org/elementskit-lite/assets/banner-772x250.png?rev=2118488\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:32:\"romethemeform/rometheme-form.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/romethemeform\";s:4:\"slug\";s:13:\"romethemeform\";s:6:\"plugin\";s:32:\"romethemeform/rometheme-form.php\";s:11:\"new_version\";s:5:\"1.1.6\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/romethemeform/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/romethemeform.1.1.6.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/romethemeform/assets/icon-128x128.gif?rev=3079080\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/romethemeform/assets/banner-772x250.jpg?rev=3079080\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";}s:43:\"template-kit-import/template-kit-import.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/template-kit-import\";s:4:\"slug\";s:19:\"template-kit-import\";s:6:\"plugin\";s:43:\"template-kit-import/template-kit-import.php\";s:11:\"new_version\";s:6:\"1.0.15\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/template-kit-import/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/template-kit-import.1.0.15.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/template-kit-import/assets/icon-256x256.png?rev=2228216\";s:2:\"1x\";s:72:\"https://ps.w.org/template-kit-import/assets/icon-128x128.png?rev=2228216\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}}s:7:\"checked\";a:9:{s:19:\"akismet/akismet.php\";s:5:\"5.3.2\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.82\";s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";s:4:\"2.54\";s:23:\"elementor/elementor.php\";s:6:\"3.21.8\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:6:\"1.6.35\";s:37:\"elementskit-lite/elementskit-lite.php\";s:5:\"3.1.4\";s:9:\"hello.php\";s:5:\"1.7.2\";s:32:\"romethemeform/rometheme-form.php\";s:5:\"1.1.6\";s:43:\"template-kit-import/template-kit-import.php\";s:6:\"1.0.15\";}}','no'),(874,'_site_transient_timeout_theme_roots','1717105123','no'),(875,'_site_transient_theme_roots','a:4:{s:15:\"hello-elementor\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(882,'_transient_timeout_elementor_remote_info_api_data_3.21.8','1717302236','no'),(883,'_transient_elementor_remote_info_api_data_3.21.8','a:4:{s:9:\"timestamp\";s:10:\"1717258383\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:75:{i:0;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:3;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:7;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:9;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:10;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:11;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:12;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:13;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:26;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:27;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:33;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:34;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:35;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:36;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:37;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:38;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:39;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:40;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:41;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;a:4:{s:4:\"name\";s:11:\"search-form\";s:5:\"title\";s:11:\"Search Form\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:51;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:52;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:53;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:54;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:55;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:57;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=1738 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,5,'_elementor_edit_mode','builder'),(4,5,'_elementor_template_type','kit'),(5,6,'_edit_lock','1709711828:1'),(6,6,'_elementor_edit_mode','builder'),(7,6,'_elementor_template_type','wp-page'),(8,6,'_elementor_version','3.19.1'),(10,8,'_wp_attached_file','2024/02/DSC02078-scaled.jpg'),(11,8,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2024/02/DSC02078-scaled.jpg\";s:8:\"filesize\";i:475364;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC02078-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25632;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"DSC02078-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102033;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC02078-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19209;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"DSC02078-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67667;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"DSC02078-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193365;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"DSC02078-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:316707;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7RM4\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599771599\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DSC02078.jpg\";}'),(18,10,'_elementor_edit_mode','builder'),(19,10,'_elementor_template_type','wp-page'),(20,10,'_elementor_version','3.19.1'),(21,11,'_elementor_edit_mode','builder'),(22,11,'_elementor_template_type','wp-page'),(23,11,'_elementor_version','3.19.1'),(24,6,'_wp_page_template','elementor_header_footer'),(25,6,'_elementor_data','[{\"id\":\"7fd1a89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b14962\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming Soon...\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#202d37\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Reem Kufi Fun\",\"typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"340a056\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56de463\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"081f885\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#202d37\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Reem Kufi Fun\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c82437\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"_id\":\"574dd6e\",\"social_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:+91 9971123456\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"custom\",\"item_icon_primary_color\":\"#DE0C0C\"},{\"social_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto:cmd@lifespan.industries\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"custom\",\"item_icon_primary_color\":\"#031576\",\"_id\":\"0b94536\"}],\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"79561ce\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#523E3E\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe49dc0\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"8022efb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"id\":22,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),(26,12,'_elementor_edit_mode','builder'),(27,12,'_elementor_template_type','wp-page'),(28,12,'_elementor_version','3.19.1'),(29,12,'_wp_page_template','default'),(30,12,'_elementor_data','[{\"id\":\"7fd1a89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"081acb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02078-scaled.jpg\",\"id\":8,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b14962\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming Soon...\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#202d37\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(31,6,'_elementor_page_assets','a:0:{}'),(33,13,'_edit_last','1'),(34,13,'_wp_page_template','elementor_canvas'),(35,13,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(36,13,'ehf_target_exclude_locations','a:0:{}'),(37,13,'ehf_target_user_roles','a:1:{i:0;s:3:\"all\";}'),(38,13,'ehf_template_type','type_header'),(39,13,'_edit_lock','1708085030:1'),(40,13,'_elementor_edit_mode','builder'),(41,13,'_elementor_template_type','wp-post'),(42,13,'_elementor_version','3.19.2'),(44,15,'_elementor_edit_mode','builder'),(45,15,'_elementor_template_type','wp-page'),(46,15,'_elementor_version','3.19.1'),(47,15,'_wp_page_template','elementor_header_footer'),(48,15,'_elementor_data','[{\"id\":\"7fd1a89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"081acb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02078-scaled.jpg\",\"id\":8,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b14962\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming Soon...\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#202d37\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(49,15,'_elementor_page_assets','a:0:{}'),(51,16,'_elementor_edit_mode','builder'),(52,16,'_elementor_template_type','wp-page'),(53,16,'_elementor_version','3.19.1'),(54,16,'_wp_page_template','elementor_header_footer'),(55,16,'_elementor_data','[{\"id\":\"7fd1a89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"081acb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02078-scaled.jpg\",\"id\":8,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b14962\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming Soon...\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#202d37\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(56,16,'_elementor_page_assets','a:0:{}'),(58,17,'_elementor_edit_mode','builder'),(59,17,'_elementor_template_type','wp-page'),(60,17,'_elementor_version','3.19.1'),(61,17,'_wp_page_template','elementor_header_footer'),(62,17,'_elementor_data','[{\"id\":\"7fd1a89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"081acb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02078-scaled.jpg\",\"id\":8,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b14962\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming Soon...\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#202d37\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(63,17,'_elementor_page_assets','a:0:{}'),(65,18,'_elementor_edit_mode','builder'),(66,18,'_elementor_template_type','kit'),(68,5,'_wp_page_template','default'),(69,5,'_elementor_page_settings','a:1:{s:9:\"site_name\";s:12:\"Narendra Ram\";}'),(73,20,'_wp_page_template','templates/wpmm-page-template.php'),(74,20,'_themeisle_gutenberg_block_styles','#wp-block-themeisle-blocks-advanced-columns-0d617423{padding-top:80px;padding-bottom:80px;padding-left:20px;padding-right:20px;margin-top:0;margin-bottom:0;--columns-width:900px;justify-content:center;min-height:auto;--background:#fff}#wp-block-themeisle-blocks-advanced-columns-0d617423>.wp-block-themeisle-blocks-advanced-columns-overlay{opacity:.5;mix-blend-mode:normal}@media (max-width:960px){#wp-block-themeisle-blocks-advanced-columns-0d617423{padding-top:80px;padding-bottom:80px;padding-left:20px;padding-right:20px}}@media (max-width:600px){#wp-block-themeisle-blocks-advanced-columns-0d617423{padding-top:40px;padding-bottom:40px;padding-left:20px;padding-right:20px}}#wp-block-themeisle-blocks-advanced-column-09847c7b{padding-top:0;padding-bottom:0;padding-left:0;padding-right:0}#wp-block-themeisle-blocks-advanced-column-09847c7b>.wp-block-themeisle-blocks-advanced-column-overlay{opacity:.5;mix-blend-mode:normal}@media (min-width:960px){#wp-block-themeisle-blocks-advanced-column-09847c7b{flex-basis:100%}}@media (max-width:600px){#wp-block-themeisle-blocks-advanced-column-09847c7b{padding-top:0;padding-bottom:0;padding-left:0;padding-right:0}}#wp-block-themeisle-blocks-advanced-heading-84bfa495{color:#282525;font-family:Outfit;font-weight:800;font-style:normal;text-transform:none;font-size:80px;--text-align:center;--text-align-tablet:center;--text-align-mobile:center}@media (max-width:960px){#wp-block-themeisle-blocks-advanced-heading-84bfa495{font-size:48px}}@media (max-width:600px){#wp-block-themeisle-blocks-advanced-heading-84bfa495{font-size:40px}}#wp-block-themeisle-blocks-countdown-aead0e2a{--background-color:#efece5;--border-style:solid;--border-radius:5px;--container-width:100%;--height:156px;--height-mobile:125px;--border-width:0px;--gap:16px;--value-font-size:64px;--value-font-size-tablet:40px;--value-font-size-mobile:32px;--label-font-size:16px;--label-font-size-tablet:13px;--label-font-size-mobile:14px;--value-font-weight:600;--label-font-weight:600}#wp-block-themeisle-blocks-countdown-aead0e2a .otter-countdown__container .otter-countdown__display .otter-countdown__display-area .otter-countdown__value{color:#202020}#wp-block-themeisle-blocks-countdown-aead0e2a .otter-countdown__container .otter-countdown__display .otter-countdown__display-area .otter-countdown__label{color:#9c9c9c}#wp-block-themeisle-blocks-advanced-heading-4956a7c6{color:#282525;font-family:Outfit;font-weight:400;font-style:normal;font-size:27px;--text-align:center;--text-align-tablet:center;--text-align-mobile:center}@media (max-width:960px){#wp-block-themeisle-blocks-advanced-heading-4956a7c6{font-size:24px}}@media (max-width:600px){#wp-block-themeisle-blocks-advanced-heading-4956a7c6{font-size:22px}}#wp-block-themeisle-blocks-advanced-columns-9258d0fb{padding-top:80px;padding-bottom:80px;padding-left:20px;padding-right:20px;margin-top:0;margin-bottom:0;--columns-width:600px;justify-content:center;min-height:auto;--background:#efece5}#wp-block-themeisle-blocks-advanced-columns-9258d0fb>.wp-block-themeisle-blocks-advanced-columns-overlay{opacity:.5;mix-blend-mode:normal}@media (max-width:960px){#wp-block-themeisle-blocks-advanced-columns-9258d0fb{padding-top:80px;padding-bottom:80px;padding-left:20px;padding-right:20px}}@media (max-width:600px){#wp-block-themeisle-blocks-advanced-columns-9258d0fb{padding-top:40px;padding-bottom:40px;padding-left:20px;padding-right:20px}}#wp-block-themeisle-blocks-advanced-column-104ab98e{padding-top:0;padding-bottom:0;padding-left:0;padding-right:0}#wp-block-themeisle-blocks-advanced-column-104ab98e>.wp-block-themeisle-blocks-advanced-column-overlay{opacity:.5;mix-blend-mode:normal}@media (min-width:960px){#wp-block-themeisle-blocks-advanced-column-104ab98e{flex-basis:100%}}@media (max-width:600px){#wp-block-themeisle-blocks-advanced-column-104ab98e{padding-top:0;padding-bottom:0;padding-left:0;padding-right:0}}#wp-block-themeisle-blocks-advanced-columns-1c3dfa33{padding-top:0;padding-bottom:0;padding-left:0;padding-right:0;margin-top:0;margin-bottom:0;min-height:auto}#wp-block-themeisle-blocks-advanced-columns-1c3dfa33>.wp-block-themeisle-blocks-advanced-columns-overlay{opacity:.5;mix-blend-mode:normal}@media (max-width:960px){#wp-block-themeisle-blocks-advanced-columns-1c3dfa33{padding-top:64px;padding-bottom:64px;padding-left:24px;padding-right:24px}}@media (max-width:600px){#wp-block-themeisle-blocks-advanced-columns-1c3dfa33{padding-top:0;padding-bottom:0;padding-left:0;padding-right:0}}#wp-block-themeisle-blocks-advanced-column-dcc8c6af{padding-top:0;padding-bottom:0;padding-left:0;padding-right:0}#wp-block-themeisle-blocks-advanced-column-dcc8c6af>.wp-block-themeisle-blocks-advanced-column-overlay{opacity:.5;mix-blend-mode:normal}@media (min-width:960px){#wp-block-themeisle-blocks-advanced-column-dcc8c6af{flex-basis:100%}}@media (max-width:600px){#wp-block-themeisle-blocks-advanced-column-dcc8c6af{padding-top:0;padding-bottom:0;padding-left:0;padding-right:0}}#wp-block-themeisle-blocks-advanced-heading-b25cf246{color:#282525;font-family:Outfit;font-weight:800;font-style:normal;text-transform:none;font-size:40px;--text-align:left;--text-align-tablet:center;--text-align-mobile:center}@media (max-width:960px){#wp-block-themeisle-blocks-advanced-heading-b25cf246{font-size:48px}}@media (max-width:600px){#wp-block-themeisle-blocks-advanced-heading-b25cf246{font-size:40px}}#wp-block-themeisle-blocks-advanced-heading-4122f520{color:#282525;font-family:Outfit;font-weight:400;font-style:normal;font-size:22px;--text-align:left;--text-align-tablet:center;--text-align-mobile:center}@media (max-width:960px){#wp-block-themeisle-blocks-advanced-heading-4122f520{font-size:22px}}@media (max-width:600px){#wp-block-themeisle-blocks-advanced-heading-4122f520{font-size:20px}}#wp-block-themeisle-blocks-form-f9b364b5{--label-color:#282525;--border-color:#bbb;--padding:16px;--help-label-color:#282525;--submit-msg-color:#457843;--submit-error-color:#c66262;--inputs-gap:16px;--input-gap:2px;--submit-font-size:1em;--input-color:#131313;--required-color:var(u002du002dnv-c-2)}#wp-block-themeisle-blocks-form-f9b364b5 .wp-block-button .wp-block-button__link:not(:hover){background-color:#282525}'),(75,20,'_themeisle_gutenberg_block_fonts','a:1:{s:6:\"Outfit\";a:2:{s:10:\"fontfamily\";s:6:\"Outfit\";s:11:\"fontvariant\";a:2:{i:0;s:3:\"800\";i:1;s:6:\"normal\";}}}'),(76,20,'_themeisle_gutenberg_block_stylesheet','post-v2-20-1707206578'),(84,22,'_wp_attached_file','2024/02/DSC02044-scaled.jpg'),(85,22,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:27:\"2024/02/DSC02044-scaled.jpg\";s:8:\"filesize\";i:430260;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC02044-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23989;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"DSC02044-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91978;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC02044-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18363;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"DSC02044-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109326;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"DSC02044-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173848;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"DSC02044-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:286389;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7RM4\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1599771123\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DSC02044.jpg\";}'),(88,23,'_elementor_edit_mode','builder'),(89,23,'_elementor_template_type','wp-page'),(90,23,'_elementor_version','3.19.1'),(91,23,'_wp_page_template','elementor_header_footer'),(92,23,'_elementor_data','[{\"id\":\"7fd1a89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"081acb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02078-scaled.jpg\",\"id\":8,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b14962\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming Soon...\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#202d37\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(93,23,'_elementor_page_assets','a:0:{}'),(94,24,'_elementor_edit_mode','builder'),(95,24,'_elementor_template_type','wp-page'),(96,24,'_elementor_version','3.19.1'),(97,24,'_wp_page_template','elementor_header_footer'),(98,24,'_elementor_data','[{\"id\":\"7fd1a89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\"},\"elements\":[{\"id\":\"081acb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02078-scaled.jpg\",\"id\":8,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7b14962\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming Soon...\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#202d37\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}]'),(99,24,'_elementor_page_assets','a:0:{}'),(100,25,'_elementor_edit_mode','builder'),(101,25,'_elementor_template_type','wp-page'),(102,25,'_elementor_version','3.19.1'),(103,25,'_wp_page_template','elementor_header_footer'),(104,25,'_elementor_data','[{\"id\":\"7fd1a89\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b14962\",\"elType\":\"widget\",\"settings\":{\"title\":\"Coming Soon...\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#202d37\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Reem Kufi Fun\",\"typography_font_size\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]},\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"340a056\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"56de463\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"margin\":{\"unit\":\"px\",\"top\":\"190\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"081f885\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#202d37\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Reem Kufi Fun\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"900\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c82437\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"_id\":\"574dd6e\",\"social_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"tel:+91 9971123456\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"custom\",\"item_icon_primary_color\":\"#DE0C0C\"},{\"social_icon\":{\"value\":\"fas fa-mail-bulk\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"mailto:cmd@lifespan.industries\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"custom\",\"item_icon_primary_color\":\"#031576\",\"_id\":\"0b94536\"}],\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"79561ce\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"},\"background_background\":\"classic\",\"background_color\":\"#523E3E\",\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[{\"id\":\"fe49dc0\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"8022efb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"id\":22,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}]'),(105,25,'_elementor_page_assets','a:0:{}'),(107,26,'envato_tk_manifest','a:7:{s:16:\"manifest_version\";s:6:\"1.0.21\";s:5:\"title\";s:54:\"Triump - Life Coach & Motivator Elementor Template Kit\";s:12:\"page_builder\";s:9:\"elementor\";s:11:\"kit_version\";s:5:\"1.0.1\";s:9:\"templates\";a:15:{i:0;a:9:{s:4:\"name\";s:17:\"Global Kit Styles\";s:10:\"screenshot\";s:33:\"screenshots/global-kit-styles.jpg\";s:6:\"source\";s:21:\"templates/global.json\";s:11:\"preview_url\";s:27:\"https://tykit.rometheme.pro\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:4:{s:13:\"template_type\";s:13:\"global-styles\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;s:31:\"additional_template_information\";a:1:{i:0;s:85:\"These are the global theme styles configured through the Elementor Theme Styles area.\";}}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:27;}}}i:1;a:9:{s:4:\"name\";s:8:\"Homepage\";s:10:\"screenshot\";s:24:\"screenshots/homepage.jpg\";s:6:\"source\";s:23:\"templates/homepage.json\";s:11:\"preview_url\";s:57:\"https://tykit.rometheme.pro/triump/template-kit/homepage/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-home\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:62;}}}i:2;a:8:{s:4:\"name\";s:8:\"About Me\";s:10:\"screenshot\";s:24:\"screenshots/about-me.jpg\";s:6:\"source\";s:23:\"templates/about-me.json\";s:11:\"preview_url\";s:57:\"https://tykit.rometheme.pro/triump/template-kit/about-me/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:3;a:8:{s:4:\"name\";s:8:\"Services\";s:10:\"screenshot\";s:24:\"screenshots/services.jpg\";s:6:\"source\";s:23:\"templates/services.json\";s:11:\"preview_url\";s:57:\"https://tykit.rometheme.pro/triump/template-kit/services/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:4;a:8:{s:4:\"name\";s:7:\"Courses\";s:10:\"screenshot\";s:23:\"screenshots/courses.jpg\";s:6:\"source\";s:22:\"templates/courses.json\";s:11:\"preview_url\";s:56:\"https://tykit.rometheme.pro/triump/template-kit/courses/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:5;a:8:{s:4:\"name\";s:12:\"Pricing Plan\";s:10:\"screenshot\";s:28:\"screenshots/pricing-plan.jpg\";s:6:\"source\";s:27:\"templates/pricing-plan.json\";s:11:\"preview_url\";s:61:\"https://tykit.rometheme.pro/triump/template-kit/pricing-plan/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:6;a:8:{s:4:\"name\";s:6:\"Events\";s:10:\"screenshot\";s:22:\"screenshots/events.jpg\";s:6:\"source\";s:21:\"templates/events.json\";s:11:\"preview_url\";s:55:\"https://tykit.rometheme.pro/triump/template-kit/events/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:7;a:8:{s:4:\"name\";s:3:\"FAQ\";s:10:\"screenshot\";s:19:\"screenshots/faq.jpg\";s:6:\"source\";s:18:\"templates/faq.json\";s:11:\"preview_url\";s:52:\"https://tykit.rometheme.pro/triump/template-kit/faq/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:8;a:8:{s:4:\"name\";s:4:\"Blog\";s:10:\"screenshot\";s:20:\"screenshots/blog.jpg\";s:6:\"source\";s:19:\"templates/blog.json\";s:11:\"preview_url\";s:53:\"https://tykit.rometheme.pro/triump/template-kit/blog/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:9;a:9:{s:4:\"name\";s:9:\"Error 404\";s:10:\"screenshot\";s:25:\"screenshots/error-404.jpg\";s:6:\"source\";s:24:\"templates/error-404.json\";s:11:\"preview_url\";s:57:\"https://tykit.rometheme.pro/triump/template-kit/error404/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:41;}}}i:10;a:8:{s:4:\"name\";s:10:\"Contact us\";s:10:\"screenshot\";s:26:\"screenshots/contact-us.jpg\";s:6:\"source\";s:25:\"templates/contact-us.json\";s:11:\"preview_url\";s:59:\"https://tykit.rometheme.pro/triump/template-kit/contact-us/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:11;a:9:{s:4:\"name\";s:20:\"Header - ElementsKit\";s:10:\"screenshot\";s:34:\"screenshots/header-elementskit.jpg\";s:6:\"source\";s:33:\"templates/header-elementskit.json\";s:11:\"preview_url\";s:67:\"https://tykit.rometheme.pro/triump/template-kit/header-elementskit/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:14:\"section-header\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:48;}}}i:12;a:9:{s:4:\"name\";s:20:\"Footer - ElementsKit\";s:10:\"screenshot\";s:34:\"screenshots/footer-elementskit.jpg\";s:6:\"source\";s:33:\"templates/footer-elementskit.json\";s:11:\"preview_url\";s:67:\"https://tykit.rometheme.pro/triump/template-kit/footer-elementskit/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:14:\"section-footer\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:35;}}}i:13;a:9:{s:4:\"name\";s:28:\"Contact Form - RomethemeForm\";s:10:\"screenshot\";s:42:\"screenshots/contact-form-romethemeform.jpg\";s:6:\"source\";s:41:\"templates/contact-form-romethemeform.json\";s:11:\"preview_url\";s:75:\"https://tykit.rometheme.pro/triump/template-kit/contact-form-romethemeform/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:15:\"section-contact\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:32;}}}i:14;a:8:{s:4:\"name\";s:30:\"Subscribe Form - RomethemeForm\";s:10:\"screenshot\";s:44:\"screenshots/subscribe-form-romethemeform.jpg\";s:6:\"source\";s:43:\"templates/subscribe-form-romethemeform.json\";s:11:\"preview_url\";s:77:\"https://tykit.rometheme.pro/triump/template-kit/subscribe-form-romethemeform/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:15:\"section-contact\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}}s:16:\"required_plugins\";a:3:{i:0;a:4:{s:4:\"name\";s:9:\"Elementor\";s:7:\"version\";s:6:\"3.14.1\";s:4:\"file\";s:23:\"elementor/elementor.php\";s:6:\"author\";s:13:\"Elementor.com\";}i:1;a:4:{s:4:\"name\";s:16:\"ElementsKit Lite\";s:7:\"version\";s:5:\"2.9.0\";s:4:\"file\";s:37:\"elementskit-lite/elementskit-lite.php\";s:6:\"author\";s:5:\"Wpmet\";}i:2;a:4:{s:4:\"name\";s:13:\"RomethemeForm\";s:7:\"version\";s:5:\"1.1.1\";s:4:\"file\";s:32:\"romethemeform/rometheme-form.php\";s:6:\"author\";s:9:\"Rometheme\";}}s:6:\"images\";a:33:{i:0;a:8:{s:8:\"filename\";s:55:\"diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\";s:13:\"thumbnail_url\";s:134:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc-800x533.jpg\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:3;a:2:{s:6:\"source\";s:22:\"templates/courses.json\";s:4:\"name\";s:7:\"Courses\";}i:4;a:2:{s:6:\"source\";s:27:\"templates/pricing-plan.json\";s:4:\"name\";s:12:\"Pricing Plan\";}}s:8:\"filesize\";i:259293;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:1;a:8:{s:8:\"filename\";s:77:\"your-point-portrait-of-handsome-confident-and-coo-2022-10-12-15-29-26-utc.jpg\";s:13:\"thumbnail_url\";s:156:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/your-point-portrait-of-handsome-confident-and-coo-2022-10-12-15-29-26-utc-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}}s:8:\"filesize\";i:249206;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:2;a:8:{s:8:\"filename\";s:10:\"Arrow1.png\";s:13:\"thumbnail_url\";s:81:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/Arrow1.png\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:3;a:2:{s:6:\"source\";s:22:\"templates/courses.json\";s:4:\"name\";s:7:\"Courses\";}i:4;a:2:{s:6:\"source\";s:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}}s:8:\"filesize\";i:19901;s:10:\"dimensions\";a:2:{i:0;i:501;i:1;i:1080;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:3;a:8:{s:8:\"filename\";s:13:\"Autograph.png\";s:13:\"thumbnail_url\";s:84:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/Autograph.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:21:\"templates/events.json\";s:4:\"name\";s:6:\"Events\";}}s:8:\"filesize\";i:5597;s:10:\"dimensions\";a:2:{i:0;i:350;i:1;i:80;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:4;a:8:{s:8:\"filename\";s:78:\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\";s:13:\"thumbnail_url\";s:157:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc-800x533.jpg\";s:9:\"templates\";a:4:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:27:\"templates/pricing-plan.json\";s:4:\"name\";s:12:\"Pricing Plan\";}i:3;a:2:{s:6:\"source\";s:21:\"templates/events.json\";s:4:\"name\";s:6:\"Events\";}}s:8:\"filesize\";i:250546;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:5;a:8:{s:8:\"filename\";s:78:\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\";s:13:\"thumbnail_url\";s:157:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc-800x533.jpg\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:27:\"templates/pricing-plan.json\";s:4:\"name\";s:12:\"Pricing Plan\";}i:3;a:2:{s:6:\"source\";s:21:\"templates/events.json\";s:4:\"name\";s:6:\"Events\";}i:4;a:2:{s:6:\"source\";s:24:\"templates/error-404.json\";s:4:\"name\";s:9:\"Error 404\";}}s:8:\"filesize\";i:242862;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:6;a:8:{s:8:\"filename\";s:20:\"Servicearrowleft.png\";s:13:\"thumbnail_url\";s:99:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/Servicearrowleft-800x800.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:2;a:2:{s:6:\"source\";s:21:\"templates/events.json\";s:4:\"name\";s:6:\"Events\";}}s:8:\"filesize\";i:46904;s:10:\"dimensions\";a:2:{i:0;i:1080;i:1;i:1080;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:7;a:8:{s:8:\"filename\";s:52:\"grandads-can-be-cool-look-at-me-portrait-of-char.jpg\";s:13:\"thumbnail_url\";s:131:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/grandads-can-be-cool-look-at-me-portrait-of-char-800x928.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:2;a:2:{s:6:\"source\";s:21:\"templates/events.json\";s:4:\"name\";s:6:\"Events\";}}s:8:\"filesize\";i:221419;s:10:\"dimensions\";a:2:{i:0;i:1104;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:8;a:8:{s:8:\"filename\";s:21:\"Servicearrowright.png\";s:13:\"thumbnail_url\";s:100:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/Servicearrowright-800x800.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:2;a:2:{s:6:\"source\";s:21:\"templates/events.json\";s:4:\"name\";s:6:\"Events\";}}s:8:\"filesize\";i:46731;s:10:\"dimensions\";a:2:{i:0;i:1080;i:1;i:1080;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:9;a:8:{s:8:\"filename\";s:59:\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\";s:13:\"thumbnail_url\";s:138:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/conference-seminar-meeting-room-2022-06-15-23-52-45-utc-800x533.jpg\";s:9:\"templates\";a:9:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:3;a:2:{s:6:\"source\";s:22:\"templates/courses.json\";s:4:\"name\";s:7:\"Courses\";}i:4;a:2:{s:6:\"source\";s:27:\"templates/pricing-plan.json\";s:4:\"name\";s:12:\"Pricing Plan\";}i:5;a:2:{s:6:\"source\";s:21:\"templates/events.json\";s:4:\"name\";s:6:\"Events\";}i:6;a:2:{s:6:\"source\";s:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}i:7;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}i:8;a:2:{s:6:\"source\";s:25:\"templates/contact-us.json\";s:4:\"name\";s:10:\"Contact us\";}}s:8:\"filesize\";i:206307;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:10;a:8:{s:8:\"filename\";s:53:\"haha-got-you-portrait-of-carefree-funny-and-emoti.jpg\";s:13:\"thumbnail_url\";s:132:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/haha-got-you-portrait-of-carefree-funny-and-emoti-800x920.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:224687;s:10:\"dimensions\";a:2:{i:0;i:1113;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:11;a:8:{s:8:\"filename\";s:7:\"Bg1.png\";s:13:\"thumbnail_url\";s:86:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/Bg1-800x533.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:27:\"templates/pricing-plan.json\";s:4:\"name\";s:12:\"Pricing Plan\";}}s:8:\"filesize\";i:278479;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:12;a:8:{s:8:\"filename\";s:16:\"Testimonial1.jpg\";s:13:\"thumbnail_url\";s:87:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/Testimonial1.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:27:\"templates/pricing-plan.json\";s:4:\"name\";s:12:\"Pricing Plan\";}}s:8:\"filesize\";i:107909;s:10:\"dimensions\";a:2:{i:0;i:800;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:13;a:8:{s:8:\"filename\";s:17:\"Testimonial-2.jpg\";s:13:\"thumbnail_url\";s:88:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/Testimonial-2.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:27:\"templates/pricing-plan.json\";s:4:\"name\";s:12:\"Pricing Plan\";}}s:8:\"filesize\";i:132983;s:10:\"dimensions\";a:2:{i:0;i:800;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:14;a:8:{s:8:\"filename\";s:17:\"Testimonial-3.jpg\";s:13:\"thumbnail_url\";s:88:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/Testimonial-3.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:27:\"templates/pricing-plan.json\";s:4:\"name\";s:12:\"Pricing Plan\";}}s:8:\"filesize\";i:130256;s:10:\"dimensions\";a:2:{i:0;i:800;i:1;i:800;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:15;a:8:{s:8:\"filename\";s:21:\"Testimonial-Arrow.png\";s:13:\"thumbnail_url\";s:100:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/Testimonial-Arrow-800x792.png\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:27:\"templates/pricing-plan.json\";s:4:\"name\";s:12:\"Pricing Plan\";}}s:8:\"filesize\";i:20515;s:10:\"dimensions\";a:2:{i:0;i:906;i:1;i:897;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:16;a:8:{s:8:\"filename\";s:54:\"impressed-happy-and-excited-good-looking-male-scie.jpg\";s:13:\"thumbnail_url\";s:133:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/impressed-happy-and-excited-good-looking-male-scie-800x923.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:27:\"templates/pricing-plan.json\";s:4:\"name\";s:12:\"Pricing Plan\";}}s:8:\"filesize\";i:238609;s:10:\"dimensions\";a:2:{i:0;i:1109;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:17;a:8:{s:8:\"filename\";s:55:\"diverse-people-in-a-seminar-2022-12-15-23-09-07-utc.jpg\";s:13:\"thumbnail_url\";s:134:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/diverse-people-in-a-seminar-2022-12-15-23-09-07-utc-800x533.jpg\";s:9:\"templates\";a:4:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:27:\"templates/pricing-plan.json\";s:4:\"name\";s:12:\"Pricing Plan\";}i:3;a:2:{s:6:\"source\";s:21:\"templates/events.json\";s:4:\"name\";s:6:\"Events\";}}s:8:\"filesize\";i:266632;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:18;a:8:{s:8:\"filename\";s:46:\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\";s:13:\"thumbnail_url\";s:125:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/talk-after-seminar-2021-09-24-03-34-42-utc-800x533.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:27:\"templates/pricing-plan.json\";s:4:\"name\";s:12:\"Pricing Plan\";}}s:8:\"filesize\";i:256918;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:19;a:8:{s:8:\"filename\";s:34:\"audience-applauding-at-seminar.jpg\";s:13:\"thumbnail_url\";s:113:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/audience-applauding-at-seminar-800x533.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:27:\"templates/pricing-plan.json\";s:4:\"name\";s:12:\"Pricing Plan\";}}s:8:\"filesize\";i:219492;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:20;a:8:{s:8:\"filename\";s:26:\"card-mockup-in-seminar.jpg\";s:13:\"thumbnail_url\";s:105:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/card-mockup-in-seminar-800x533.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:23:\"templates/homepage.json\";s:4:\"name\";s:8:\"Homepage\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}i:2;a:2:{s:6:\"source\";s:27:\"templates/pricing-plan.json\";s:4:\"name\";s:12:\"Pricing Plan\";}}s:8:\"filesize\";i:236201;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:21;a:8:{s:8:\"filename\";s:10:\"imgbg1.png\";s:13:\"thumbnail_url\";s:89:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/imgbg1-800x800.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}}s:8:\"filesize\";i:19414;s:10:\"dimensions\";a:2:{i:0;i:1080;i:1;i:1080;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:22;a:8:{s:8:\"filename\";s:53:\"happiness-is-just-around-corner-portrait-of-charm.png\";s:13:\"thumbnail_url\";s:132:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/happiness-is-just-around-corner-portrait-of-charm-800x869.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}}s:8:\"filesize\";i:262723;s:10:\"dimensions\";a:2:{i:0;i:943;i:1;i:1024;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:23;a:8:{s:8:\"filename\";s:12:\"Bioarrow.png\";s:13:\"thumbnail_url\";s:91:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/Bioarrow-800x373.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}}s:8:\"filesize\";i:54108;s:10:\"dimensions\";a:2:{i:0;i:2600;i:1;i:1212;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:24;a:8:{s:8:\"filename\";s:53:\"at-your-service-charming-carefree-and-confident-e.png\";s:13:\"thumbnail_url\";s:132:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/at-your-service-charming-carefree-and-confident-e-800x925.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-me.json\";s:4:\"name\";s:8:\"About Me\";}}s:8:\"filesize\";i:286288;s:10:\"dimensions\";a:2:{i:0;i:886;i:1;i:1024;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:25;a:8:{s:8:\"filename\";s:78:\"multicultural-community-of-young-people-smiling-to-2023-01-19-03-01-35-utc.jpg\";s:13:\"thumbnail_url\";s:157:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/multicultural-community-of-young-people-smiling-to-2023-01-19-03-01-35-utc-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/courses.json\";s:4:\"name\";s:7:\"Courses\";}}s:8:\"filesize\";i:262937;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:26;a:8:{s:8:\"filename\";s:77:\"confidence-is-empowering-portrait-of-a-group-of-c-2022-10-05-16-21-32-utc.jpg\";s:13:\"thumbnail_url\";s:156:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/confidence-is-empowering-portrait-of-a-group-of-c-2022-10-05-16-21-32-utc-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/courses.json\";s:4:\"name\";s:7:\"Courses\";}}s:8:\"filesize\";i:232921;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:27;a:8:{s:8:\"filename\";s:77:\"family-relations-happy-mom-and-dad-playing-with-i-2022-12-16-07-40-42-utc.jpg\";s:13:\"thumbnail_url\";s:156:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/family-relations-happy-mom-and-dad-playing-with-i-2022-12-16-07-40-42-utc-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/courses.json\";s:4:\"name\";s:7:\"Courses\";}}s:8:\"filesize\";i:257821;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:28;a:8:{s:8:\"filename\";s:52:\"joyous-young-people-feeling-inspired-about-their.jpg\";s:13:\"thumbnail_url\";s:131:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/joyous-young-people-feeling-inspired-about-their-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/courses.json\";s:4:\"name\";s:7:\"Courses\";}}s:8:\"filesize\";i:246945;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:29;a:8:{s:8:\"filename\";s:53:\"young-woman-jogging-at-city-bridge-healthy-lifest.jpg\";s:13:\"thumbnail_url\";s:132:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/young-woman-jogging-at-city-bridge-healthy-lifest-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/courses.json\";s:4:\"name\";s:7:\"Courses\";}}s:8:\"filesize\";i:238098;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:30;a:8:{s:8:\"filename\";s:54:\"young-small-business-entrepreneur-female-with-cera.jpg\";s:13:\"thumbnail_url\";s:133:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/young-small-business-entrepreneur-female-with-cera-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/courses.json\";s:4:\"name\";s:7:\"Courses\";}}s:8:\"filesize\";i:251110;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:31;a:8:{s:8:\"filename\";s:12:\"mainlogo.png\";s:13:\"thumbnail_url\";s:83:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/mainlogo.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:33:\"templates/header-elementskit.json\";s:4:\"name\";s:20:\"Header - ElementsKit\";}}s:8:\"filesize\";i:1986;s:10:\"dimensions\";a:2:{i:0;i:195;i:1;i:78;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}i:32;a:8:{s:8:\"filename\";s:14:\"FooterLogo.png\";s:13:\"thumbnail_url\";s:85:\"http://tykit.rometheme.pro/triump/wp-content/uploads/sites/128/2023/07/FooterLogo.png\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:33:\"templates/footer-elementskit.json\";s:4:\"name\";s:20:\"Footer - ElementsKit\";}}s:8:\"filesize\";i:1938;s:10:\"dimensions\";a:2:{i:0;i:195;i:1;i:78;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:50:\"https://elements.envato.com/collections/2ZRNYTHUV7\";}}}'),(108,26,'envato_tk_folder_name','6645d3b846c6dbdb0234e5a3bc0c515b'),(109,26,'envato_tk_builder','elementor'),(110,26,'envato_tk_source_zip_url','https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/template-kits/6645d3b846c6dbdb0234e5a3bc0c515b/source-26.zip'),(111,27,'_elementor_edit_mode','builder'),(112,27,'_elementor_template_type','kit'),(113,27,'_elementor_version','3.19.2'),(114,28,'_elementor_edit_mode','builder'),(115,28,'_elementor_template_type','section'),(116,28,'_elementor_version','3.19.1'),(117,27,'_wp_page_template','default'),(118,27,'_elementor_page_settings','a:22:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#5B7674\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:18:\"Secondary / Alt BG\";s:5:\"color\";s:7:\"#FFFFFF\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#6A8D8B\";}}s:13:\"custom_colors\";a:5:{i:0;a:3:{s:3:\"_id\";s:7:\"ba7c600\";s:5:\"title\";s:11:\"Transparent\";s:5:\"color\";s:9:\"#02010100\";}i:1;a:3:{s:3:\"_id\";s:7:\"23c5e7b\";s:5:\"title\";s:9:\"Overlay 1\";s:5:\"color\";s:7:\"#CFCFCF\";}i:2;a:3:{s:3:\"_id\";s:7:\"1b0ff90\";s:5:\"title\";s:9:\"Overlay 2\";s:5:\"color\";s:7:\"#A7B9B8\";}i:3;a:3:{s:3:\"_id\";s:7:\"bd3a38d\";s:5:\"title\";s:9:\"Overlay 3\";s:5:\"color\";s:7:\"#F5F5F5\";}i:4;a:3:{s:3:\"_id\";s:7:\"a5a5c45\";s:5:\"title\";s:9:\"Overlay 4\";s:5:\"color\";s:7:\"#FFDF00\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:8:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}}i:3;a:10:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1499999999999999;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:13:{i:0;a:10:{s:3:\"_id\";s:7:\"4f64a1f\";s:5:\"title\";s:15:\"Hero title / H1\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:4.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}i:1;a:10:{s:3:\"_id\";s:7:\"26fe4c0\";s:5:\"title\";s:22:\"Hero title Script / H1\";s:21:\"typography_typography\";s:6:\"custom\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:4.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_family\";s:10:\"Bad Script\";s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}i:2;a:10:{s:3:\"_id\";s:7:\"5ea2e2b\";s:5:\"title\";s:16:\"Extra Large / H2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:3;a:10:{s:3:\"_id\";s:7:\"6cfe23f\";s:5:\"title\";s:23:\"Extra Large Script / H2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:4;a:10:{s:3:\"_id\";s:7:\"601e913\";s:5:\"title\";s:10:\"Large / H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:5;a:10:{s:3:\"_id\";s:7:\"4961eb1\";s:5:\"title\";s:17:\"Large Script / H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:6;a:10:{s:3:\"_id\";s:7:\"66038e2\";s:5:\"title\";s:11:\"Medium / H4\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.375;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.125;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:7;a:10:{s:3:\"_id\";s:7:\"0591894\";s:5:\"title\";s:10:\"Small / H5\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.375;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:8;a:10:{s:3:\"_id\";s:7:\"2187f75\";s:5:\"title\";s:16:\"Extra Small / H6\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.125;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:9;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:3:\"_id\";s:7:\"7e08b7a\";s:5:\"title\";s:11:\"Bold Text 1\";}i:10;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"957e718\";s:5:\"title\";s:11:\"Client Name\";}i:11;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1499999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"8cd106e\";s:5:\"title\";s:8:\"Nav Menu\";}i:12;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:11.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:8;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"70063f2\";s:5:\"title\";s:3:\"404\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1340;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:26:\"body_background_background\";s:7:\"classic\";s:15:\"activeItemIndex\";i:1;s:11:\"__globals__\";a:24:{s:21:\"body_background_color\";s:27:\"globals/colors?id=secondary\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=4f64a1f\";s:8:\"h1_color\";s:25:\"globals/colors?id=primary\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:24:\"h2_typography_typography\";s:29:\"globals/typography?id=5ea2e2b\";s:8:\"h2_color\";s:25:\"globals/colors?id=primary\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=601e913\";s:8:\"h3_color\";s:25:\"globals/colors?id=primary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=66038e2\";s:8:\"h4_color\";s:25:\"globals/colors?id=primary\";s:24:\"h5_typography_typography\";s:29:\"globals/typography?id=0591894\";s:8:\"h5_color\";s:25:\"globals/colors?id=primary\";s:24:\"h6_typography_typography\";s:29:\"globals/typography?id=2187f75\";s:8:\"h6_color\";s:24:\"globals/colors?id=accent\";s:28:\"button_typography_typography\";s:28:\"globals/typography?id=accent\";s:17:\"button_text_color\";s:27:\"globals/colors?id=secondary\";s:23:\"button_background_color\";s:24:\"globals/colors?id=accent\";s:25:\"button_background_color_b\";s:25:\"globals/colors?id=primary\";s:23:\"button_hover_text_color\";s:27:\"globals/colors?id=secondary\";s:29:\"button_hover_background_color\";s:24:\"globals/colors?id=accent\";s:31:\"button_hover_background_color_b\";s:25:\"globals/colors?id=primary\";s:17:\"link_normal_color\";s:25:\"globals/colors?id=1b0ff90\";s:16:\"link_hover_color\";s:27:\"globals/colors?id=secondary\";}s:28:\"button_background_background\";s:8:\"gradient\";s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:34:\"button_hover_background_background\";s:8:\"gradient\";s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:9:\"site_name\";s:12:\"Narendra Ram\";s:9:\"site_logo\";a:5:{s:3:\"url\";s:69:\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-1.png\";s:2:\"id\";i:188;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:12:\"site_favicon\";a:5:{s:3:\"url\";s:75:\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-favicon.png\";s:2:\"id\";i:211;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:16:\"site_description\";s:48:\"A Versatile Tycoon, Proficient in Diverse Realms\";}'),(119,27,'_elementor_data','[]'),(120,29,'_elementor_edit_mode','builder'),(121,29,'_elementor_template_type','section'),(122,29,'_elementor_version','3.19.1'),(123,29,'_wp_page_template','default'),(124,29,'_elementor_page_settings','a:17:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#122658\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:18:\"Secondary / Alt BG\";s:5:\"color\";s:7:\"#FFFFFF\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#0066CC\";}}s:13:\"custom_colors\";a:5:{i:0;a:3:{s:3:\"_id\";s:7:\"ba7c600\";s:5:\"title\";s:11:\"Transparent\";s:5:\"color\";s:9:\"#02010100\";}i:1;a:3:{s:3:\"_id\";s:7:\"23c5e7b\";s:5:\"title\";s:9:\"Overlay 1\";s:5:\"color\";s:7:\"#CFCFCF\";}i:2;a:3:{s:3:\"_id\";s:7:\"1b0ff90\";s:5:\"title\";s:9:\"Overlay 2\";s:5:\"color\";s:7:\"#0C85FF\";}i:3;a:3:{s:3:\"_id\";s:7:\"bd3a38d\";s:5:\"title\";s:9:\"Overlay 3\";s:5:\"color\";s:7:\"#F5F5F5\";}i:4;a:3:{s:3:\"_id\";s:7:\"a5a5c45\";s:5:\"title\";s:9:\"Overlay 4\";s:5:\"color\";s:7:\"#FFDF00\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:8:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}}i:3;a:10:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1499999999999999;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:13:{i:0;a:10:{s:3:\"_id\";s:7:\"4f64a1f\";s:5:\"title\";s:15:\"Hero title / H1\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:4.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}i:1;a:10:{s:3:\"_id\";s:7:\"26fe4c0\";s:5:\"title\";s:22:\"Hero title Script / H1\";s:21:\"typography_typography\";s:6:\"custom\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:4.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_family\";s:10:\"Bad Script\";s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}i:2;a:10:{s:3:\"_id\";s:7:\"5ea2e2b\";s:5:\"title\";s:16:\"Extra Large / H2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:3;a:10:{s:3:\"_id\";s:7:\"6cfe23f\";s:5:\"title\";s:23:\"Extra Large Script / H2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:4;a:10:{s:3:\"_id\";s:7:\"601e913\";s:5:\"title\";s:10:\"Large / H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:5;a:10:{s:3:\"_id\";s:7:\"4961eb1\";s:5:\"title\";s:17:\"Large Script / H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:6;a:10:{s:3:\"_id\";s:7:\"66038e2\";s:5:\"title\";s:11:\"Medium / H4\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.375;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.125;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:7;a:10:{s:3:\"_id\";s:7:\"0591894\";s:5:\"title\";s:10:\"Small / H5\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.375;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:8;a:10:{s:3:\"_id\";s:7:\"2187f75\";s:5:\"title\";s:16:\"Extra Small / H6\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.125;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:9;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:3:\"_id\";s:7:\"7e08b7a\";s:5:\"title\";s:11:\"Bold Text 1\";}i:10;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"957e718\";s:5:\"title\";s:11:\"Client Name\";}i:11;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1499999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"8cd106e\";s:5:\"title\";s:8:\"Nav Menu\";}i:12;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:11.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:8;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"70063f2\";s:5:\"title\";s:3:\"404\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1340;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:26:\"body_background_background\";s:7:\"classic\";s:15:\"activeItemIndex\";i:1;s:11:\"__globals__\";a:24:{s:21:\"body_background_color\";s:27:\"globals/colors?id=secondary\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=4f64a1f\";s:8:\"h1_color\";s:25:\"globals/colors?id=primary\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:24:\"h2_typography_typography\";s:29:\"globals/typography?id=5ea2e2b\";s:8:\"h2_color\";s:25:\"globals/colors?id=primary\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=601e913\";s:8:\"h3_color\";s:25:\"globals/colors?id=primary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=66038e2\";s:8:\"h4_color\";s:25:\"globals/colors?id=primary\";s:24:\"h5_typography_typography\";s:29:\"globals/typography?id=0591894\";s:8:\"h5_color\";s:25:\"globals/colors?id=primary\";s:24:\"h6_typography_typography\";s:29:\"globals/typography?id=2187f75\";s:8:\"h6_color\";s:24:\"globals/colors?id=accent\";s:28:\"button_typography_typography\";s:28:\"globals/typography?id=accent\";s:17:\"button_text_color\";s:27:\"globals/colors?id=secondary\";s:23:\"button_background_color\";s:24:\"globals/colors?id=accent\";s:25:\"button_background_color_b\";s:25:\"globals/colors?id=primary\";s:23:\"button_hover_text_color\";s:27:\"globals/colors?id=secondary\";s:29:\"button_hover_background_color\";s:24:\"globals/colors?id=accent\";s:31:\"button_hover_background_color_b\";s:25:\"globals/colors?id=primary\";s:17:\"link_normal_color\";s:25:\"globals/colors?id=1b0ff90\";s:16:\"link_hover_color\";s:27:\"globals/colors?id=secondary\";}s:28:\"button_background_background\";s:8:\"gradient\";s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:34:\"button_hover_background_background\";s:8:\"gradient\";s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}}'),(125,29,'_elementor_data','[]'),(126,27,'_elementor_page_assets','a:0:{}'),(127,27,'envato_tk_source_kit','26'),(128,27,'envato_tk_source_index','0'),(129,30,'_elementor_edit_mode','builder'),(130,30,'_elementor_template_type','kit'),(131,30,'_elementor_version','3.19.1'),(132,30,'_wp_page_template','default'),(133,30,'_elementor_page_settings','a:17:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#122658\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:18:\"Secondary / Alt BG\";s:5:\"color\";s:7:\"#FFFFFF\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#0066CC\";}}s:13:\"custom_colors\";a:5:{i:0;a:3:{s:3:\"_id\";s:7:\"ba7c600\";s:5:\"title\";s:11:\"Transparent\";s:5:\"color\";s:9:\"#02010100\";}i:1;a:3:{s:3:\"_id\";s:7:\"23c5e7b\";s:5:\"title\";s:9:\"Overlay 1\";s:5:\"color\";s:7:\"#CFCFCF\";}i:2;a:3:{s:3:\"_id\";s:7:\"1b0ff90\";s:5:\"title\";s:9:\"Overlay 2\";s:5:\"color\";s:7:\"#0C85FF\";}i:3;a:3:{s:3:\"_id\";s:7:\"bd3a38d\";s:5:\"title\";s:9:\"Overlay 3\";s:5:\"color\";s:7:\"#F5F5F5\";}i:4;a:3:{s:3:\"_id\";s:7:\"a5a5c45\";s:5:\"title\";s:9:\"Overlay 4\";s:5:\"color\";s:7:\"#FFDF00\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:8:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}}i:3;a:10:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1499999999999999;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:13:{i:0;a:10:{s:3:\"_id\";s:7:\"4f64a1f\";s:5:\"title\";s:15:\"Hero title / H1\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:4.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}i:1;a:10:{s:3:\"_id\";s:7:\"26fe4c0\";s:5:\"title\";s:22:\"Hero title Script / H1\";s:21:\"typography_typography\";s:6:\"custom\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:4.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_family\";s:10:\"Bad Script\";s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}i:2;a:10:{s:3:\"_id\";s:7:\"5ea2e2b\";s:5:\"title\";s:16:\"Extra Large / H2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:3;a:10:{s:3:\"_id\";s:7:\"6cfe23f\";s:5:\"title\";s:23:\"Extra Large Script / H2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:4;a:10:{s:3:\"_id\";s:7:\"601e913\";s:5:\"title\";s:10:\"Large / H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:5;a:10:{s:3:\"_id\";s:7:\"4961eb1\";s:5:\"title\";s:17:\"Large Script / H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:6;a:10:{s:3:\"_id\";s:7:\"66038e2\";s:5:\"title\";s:11:\"Medium / H4\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.375;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.125;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:7;a:10:{s:3:\"_id\";s:7:\"0591894\";s:5:\"title\";s:10:\"Small / H5\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.375;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:8;a:10:{s:3:\"_id\";s:7:\"2187f75\";s:5:\"title\";s:16:\"Extra Small / H6\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.125;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:9;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:3:\"_id\";s:7:\"7e08b7a\";s:5:\"title\";s:11:\"Bold Text 1\";}i:10;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"957e718\";s:5:\"title\";s:11:\"Client Name\";}i:11;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1499999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"8cd106e\";s:5:\"title\";s:8:\"Nav Menu\";}i:12;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:11.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:8;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"70063f2\";s:5:\"title\";s:3:\"404\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1340;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:26:\"body_background_background\";s:7:\"classic\";s:15:\"activeItemIndex\";i:1;s:11:\"__globals__\";a:24:{s:21:\"body_background_color\";s:27:\"globals/colors?id=secondary\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=4f64a1f\";s:8:\"h1_color\";s:25:\"globals/colors?id=primary\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:24:\"h2_typography_typography\";s:29:\"globals/typography?id=5ea2e2b\";s:8:\"h2_color\";s:25:\"globals/colors?id=primary\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=601e913\";s:8:\"h3_color\";s:25:\"globals/colors?id=primary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=66038e2\";s:8:\"h4_color\";s:25:\"globals/colors?id=primary\";s:24:\"h5_typography_typography\";s:29:\"globals/typography?id=0591894\";s:8:\"h5_color\";s:25:\"globals/colors?id=primary\";s:24:\"h6_typography_typography\";s:29:\"globals/typography?id=2187f75\";s:8:\"h6_color\";s:24:\"globals/colors?id=accent\";s:28:\"button_typography_typography\";s:28:\"globals/typography?id=accent\";s:17:\"button_text_color\";s:27:\"globals/colors?id=secondary\";s:23:\"button_background_color\";s:24:\"globals/colors?id=accent\";s:25:\"button_background_color_b\";s:25:\"globals/colors?id=primary\";s:23:\"button_hover_text_color\";s:27:\"globals/colors?id=secondary\";s:29:\"button_hover_background_color\";s:24:\"globals/colors?id=accent\";s:31:\"button_hover_background_color_b\";s:25:\"globals/colors?id=primary\";s:17:\"link_normal_color\";s:25:\"globals/colors?id=1b0ff90\";s:16:\"link_hover_color\";s:27:\"globals/colors?id=secondary\";}s:28:\"button_background_background\";s:8:\"gradient\";s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:34:\"button_hover_background_background\";s:8:\"gradient\";s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}}'),(134,30,'_elementor_data','[]'),(135,30,'_elementor_page_assets','a:0:{}'),(136,31,'_wp_attached_file','2024/02/placeholder.png'),(137,31,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2024/02/placeholder.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"placeholder-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"placeholder-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"placeholder-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(138,31,'_elementor_source_image_hash','88d42d2a7ad2d03b66dfd41184c97fffe3ff3254'),(139,32,'_elementor_edit_mode','builder'),(140,32,'_elementor_template_type','section'),(141,32,'_elementor_version','3.19.1'),(142,33,'_elementor_edit_mode','builder'),(143,33,'_elementor_template_type','section'),(144,33,'_elementor_version','3.19.1'),(145,32,'_wp_page_template','elementor_canvas'),(146,32,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(147,32,'_elementor_data','[{\"id\":\"2d9b3c41\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"347fa508\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d011ae\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4039a25c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"255b93d5\",\"elType\":\"widget\",\"settings\":{\"label_text\":\"Name\",\"name_input\":\"rform-text\",\"placeholder_input\":\"Your name here\",\"required_input\":\"\",\"warning_message\":\"This field is required\",\"input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"input_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"input_background_normal_background\":\"classic\",\"input_border_normal_border\":\"none\",\"input_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"input_background_normal_color\":\"globals\\/colors?id=secondary\",\"input_border_normal_color\":\"globals\\/colors?id=23c5e7b\",\"input_typography_typography\":\"globals\\/typography?id=text\",\"input_color_normal\":\"globals\\/colors?id=text\",\"placeholder_typography_typography\":\"globals\\/typography?id=text\",\"placeholder_color\":\"globals\\/colors?id=text\",\"warning_color\":\"globals\\/colors?id=accent\",\"warning_typography_typography\":\"globals\\/typography?id=text\",\"label_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"label_color\":\"globals\\/colors?id=primary\"},\"input_background_normal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_normal_slideshow_gallery\":[],\"input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_hover_slideshow_gallery\":[],\"input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_focus_slideshow_gallery\":[],\"input_background_warning_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_warning_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_warning_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text\"},{\"id\":\"e1555d6\",\"elType\":\"widget\",\"settings\":{\"label_text\":\"Email\",\"name_input\":\"rform-email\",\"placeholder_input\":\"Input email here\",\"required_input\":\"\",\"warning_message\":\"This field is required\",\"input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"input_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"input_background_normal_background\":\"classic\",\"input_border_normal_border\":\"none\",\"input_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"input_background_normal_color\":\"globals\\/colors?id=secondary\",\"input_border_normal_color\":\"globals\\/colors?id=23c5e7b\",\"input_typography_typography\":\"globals\\/typography?id=text\",\"input_color_normal\":\"globals\\/colors?id=text\",\"placeholder_typography_typography\":\"globals\\/typography?id=text\",\"placeholder_color\":\"globals\\/colors?id=text\",\"warning_color\":\"globals\\/colors?id=accent\",\"warning_typography_typography\":\"globals\\/typography?id=text\",\"label_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"label_color\":\"globals\\/colors?id=primary\"},\"input_background_normal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_normal_slideshow_gallery\":[],\"input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_hover_slideshow_gallery\":[],\"input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_focus_slideshow_gallery\":[],\"input_background_warning_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_warning_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_warning_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"email\"},{\"id\":\"ee1fa95\",\"elType\":\"widget\",\"settings\":{\"label_text\":\"Message\",\"name_input\":\"rform-message \",\"placeholder_input\":\"Input message here\",\"required_input\":\"\",\"warning_message\":\"This field is required\",\"input_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"input_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"input_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"input_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"input_background_normal_background\":\"classic\",\"input_border_normal_border\":\"none\",\"input_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"input_background_normal_color\":\"globals\\/colors?id=secondary\",\"input_border_normal_color\":\"globals\\/colors?id=23c5e7b\",\"input_typography_typography\":\"globals\\/typography?id=text\",\"input_color_normal\":\"globals\\/colors?id=text\",\"placeholder_typography_typography\":\"globals\\/typography?id=text\",\"placeholder_color\":\"globals\\/colors?id=text\",\"warning_color\":\"globals\\/colors?id=accent\",\"warning_typography_typography\":\"globals\\/typography?id=text\",\"label_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"label_color\":\"globals\\/colors?id=primary\"},\"input_background_normal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_normal_slideshow_gallery\":[],\"input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_hover_slideshow_gallery\":[],\"input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_focus_slideshow_gallery\":[],\"input_background_warning_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_warning_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_warning_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-area\"},{\"id\":\"44c6ce16\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Submit now\",\"btn_fullwidth\":\"yes\",\"border_normal_border\":\"none\",\"btn_background_hover_background\":\"gradient\",\"__globals__\":{\"btn_background_hover_color\":\"globals\\/colors?id=1b0ff90\",\"btn_background_hover_color_b\":\"globals\\/colors?id=accent\"},\"btn_icon\":{\"value\":\"\",\"library\":\"\"},\"btn_background_normal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"btn_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"btn_background_normal_slideshow_gallery\":[],\"btn_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"btn_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"btn_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"rform_button_submit\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(148,34,'_elementor_edit_mode','builder'),(149,34,'_elementor_template_type','section'),(150,34,'_elementor_version','3.19.1'),(151,34,'_wp_page_template','default'),(152,34,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(153,34,'_elementor_data','[{\"id\":\"2d9b3c41\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"347fa508\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d011ae\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4039a25c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"255b93d5\",\"elType\":\"widget\",\"settings\":{\"label_text\":\"Name\",\"name_input\":\"rform-text\",\"placeholder_input\":\"Your name here\",\"required_input\":\"\",\"warning_message\":\"This field is required\",\"input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"input_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"input_background_normal_background\":\"classic\",\"input_border_normal_border\":\"none\",\"input_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"input_background_normal_color\":\"globals\\/colors?id=secondary\",\"input_border_normal_color\":\"globals\\/colors?id=23c5e7b\",\"input_typography_typography\":\"globals\\/typography?id=text\",\"input_color_normal\":\"globals\\/colors?id=text\",\"placeholder_typography_typography\":\"globals\\/typography?id=text\",\"placeholder_color\":\"globals\\/colors?id=text\",\"warning_color\":\"globals\\/colors?id=accent\",\"warning_typography_typography\":\"globals\\/typography?id=text\",\"label_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"label_color\":\"globals\\/colors?id=primary\"},\"input_background_normal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_normal_slideshow_gallery\":[],\"input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_hover_slideshow_gallery\":[],\"input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_focus_slideshow_gallery\":[],\"input_background_warning_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_warning_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_warning_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text\"},{\"id\":\"e1555d6\",\"elType\":\"widget\",\"settings\":{\"label_text\":\"Email\",\"name_input\":\"rform-email\",\"placeholder_input\":\"Input email here\",\"required_input\":\"\",\"warning_message\":\"This field is required\",\"input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"input_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"input_background_normal_background\":\"classic\",\"input_border_normal_border\":\"none\",\"input_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"input_background_normal_color\":\"globals\\/colors?id=secondary\",\"input_border_normal_color\":\"globals\\/colors?id=23c5e7b\",\"input_typography_typography\":\"globals\\/typography?id=text\",\"input_color_normal\":\"globals\\/colors?id=text\",\"placeholder_typography_typography\":\"globals\\/typography?id=text\",\"placeholder_color\":\"globals\\/colors?id=text\",\"warning_color\":\"globals\\/colors?id=accent\",\"warning_typography_typography\":\"globals\\/typography?id=text\",\"label_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"label_color\":\"globals\\/colors?id=primary\"},\"input_background_normal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_normal_slideshow_gallery\":[],\"input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_hover_slideshow_gallery\":[],\"input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_focus_slideshow_gallery\":[],\"input_background_warning_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_warning_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_warning_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"email\"},{\"id\":\"ee1fa95\",\"elType\":\"widget\",\"settings\":{\"label_text\":\"Message\",\"name_input\":\"rform-message \",\"placeholder_input\":\"Input message here\",\"required_input\":\"\",\"warning_message\":\"This field is required\",\"input_height\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"input_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"input_border_radius_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"input_border_radius_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"input_background_normal_background\":\"classic\",\"input_border_normal_border\":\"none\",\"input_border_normal_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"input_background_normal_color\":\"globals\\/colors?id=secondary\",\"input_border_normal_color\":\"globals\\/colors?id=23c5e7b\",\"input_typography_typography\":\"globals\\/typography?id=text\",\"input_color_normal\":\"globals\\/colors?id=text\",\"placeholder_typography_typography\":\"globals\\/typography?id=text\",\"placeholder_color\":\"globals\\/colors?id=text\",\"warning_color\":\"globals\\/colors?id=accent\",\"warning_typography_typography\":\"globals\\/typography?id=text\",\"label_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"label_color\":\"globals\\/colors?id=primary\"},\"input_background_normal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_normal_slideshow_gallery\":[],\"input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_hover_slideshow_gallery\":[],\"input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_focus_slideshow_gallery\":[],\"input_background_warning_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_warning_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"input_background_warning_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-area\"},{\"id\":\"44c6ce16\",\"elType\":\"widget\",\"settings\":{\"button_text\":\"Submit now\",\"btn_fullwidth\":\"yes\",\"border_normal_border\":\"none\",\"btn_background_hover_background\":\"gradient\",\"__globals__\":{\"btn_background_hover_color\":\"globals\\/colors?id=1b0ff90\",\"btn_background_hover_color_b\":\"globals\\/colors?id=accent\"},\"btn_icon\":{\"value\":\"\",\"library\":\"\"},\"btn_background_normal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"btn_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"btn_background_normal_slideshow_gallery\":[],\"btn_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"btn_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"btn_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"rform_button_submit\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(154,32,'_elementor_page_assets','a:0:{}'),(155,32,'envato_tk_source_kit','26'),(156,32,'envato_tk_source_index','13'),(157,35,'_elementor_edit_mode','builder'),(158,35,'_elementor_template_type','section'),(159,35,'_elementor_version','3.19.1'),(160,36,'_elementor_edit_mode','builder'),(161,36,'_elementor_template_type','section'),(162,36,'_elementor_version','3.19.1'),(163,35,'_wp_page_template','elementor_canvas'),(164,35,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(165,35,'_elementor_data','[{\"id\":\"14c39657\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27430c56\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c291b58\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b407224\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a791f2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79350b21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Proin quis neque in mi condimentum rutrum.\\u00a0<\\/strong><\\/em><\\/p><p>vulputate at tempor et, sollicitudin id leo. Vivamus laoreet rhoncus nulla at facilisis. Sed egestas luctus mauris, nec molestie.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70957d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"751714de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Courses\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"197b9ed6\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"248aa2f2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Foundations of Life Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Goal Setting & Action Planning\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Effective Communication\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Transforming Mindset\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Building Resilience & Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"},{\"text\":\"Launching Your Life Coaching Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3095b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2bf1c43f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77d89e5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"quick links\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b17b89b\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d0ae2b0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Me\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Courses\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Policies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"43a76ed8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"597e2582\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4cf8cfcd\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"5b8253d8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"54da1ce\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ea4ee33\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4f3c921d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"292ee16e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"41c91088\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2023, All rights reserved. Powered by Rometheme.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5dc8f3a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e7328d7\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(166,37,'_elementor_edit_mode','builder'),(167,37,'_elementor_template_type','section'),(168,37,'_elementor_version','3.19.1'),(169,37,'_wp_page_template','default'),(170,37,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(171,37,'_elementor_data','[{\"id\":\"14c39657\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27430c56\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c291b58\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b407224\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a791f2b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"79350b21\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Proin quis neque in mi condimentum rutrum.\\u00a0<\\/strong><\\/em><\\/p><p>vulputate at tempor et, sollicitudin id leo. Vivamus laoreet rhoncus nulla at facilisis. Sed egestas luctus mauris, nec molestie.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"70957d59\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"751714de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Courses\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"197b9ed6\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"248aa2f2\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Foundations of Life Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Goal Setting & Action Planning\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Effective Communication\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Transforming Mindset\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Building Resilience & Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"},{\"text\":\"Launching Your Life Coaching Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3095b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2bf1c43f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77d89e5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"quick links\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b17b89b\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d0ae2b0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Me\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Courses\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Policies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"43a76ed8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"597e2582\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4cf8cfcd\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"5b8253d8\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"54da1ce\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ea4ee33\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4f3c921d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"292ee16e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"41c91088\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2023, All rights reserved. Powered by Rometheme.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"5dc8f3a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e7328d7\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(172,35,'_elementor_page_assets','a:0:{}'),(173,35,'envato_tk_source_kit','26'),(174,35,'envato_tk_source_index','12'),(175,38,'_wp_attached_file','2024/02/placeholder-1.png'),(176,38,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2024/02/placeholder-1.png\";s:8:\"filesize\";i:3782;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6474;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-1-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:31168;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3332;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-1-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:21881;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(177,38,'_elementor_source_image_hash','26fdd4af4afd8f8688b7bbc3d3cd9318bbb6158b'),(178,39,'_elementor_edit_mode','builder'),(179,39,'_elementor_template_type','page'),(180,39,'_elementor_version','3.19.1'),(181,40,'_elementor_edit_mode','builder'),(182,41,'_elementor_edit_mode','builder'),(183,40,'_elementor_template_type','page'),(184,41,'_elementor_template_type','page'),(185,40,'_elementor_version','3.19.1'),(186,39,'_wp_page_template','elementor_header_footer'),(187,39,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(188,39,'_elementor_data','[{\"id\":\"75d43322\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":40,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"overflow\":\"hidden\",\"background_background\":\"gradient\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ea71654\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50e905d\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10dc87cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"#\\\">Home<\\/a> &gt; Contat us<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b17e40f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66ef2d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ac701b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43e0d600\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"255979b\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"757a2a22\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4e93e9ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"227ee9bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"36f5c4c2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"71bb4a08\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c506768\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\",\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd3a38d\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f4be01e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"413c32fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b14767d\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":395,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"hover_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(189,42,'_elementor_edit_mode','builder'),(190,42,'_elementor_template_type','page'),(191,42,'_elementor_version','3.19.1'),(192,42,'_wp_page_template','elementor_header_footer'),(193,42,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(194,42,'_elementor_data','[{\"id\":\"75d43322\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":40,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"overflow\":\"hidden\",\"background_background\":\"gradient\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ea71654\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50e905d\",\"elType\":\"widget\",\"settings\":{\"title\":\"contact us\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10dc87cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"#\\\">Home<\\/a> &gt; Contat us<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b17e40f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66ef2d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ac701b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43e0d600\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"255979b\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"757a2a22\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4e93e9ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"227ee9bf\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"36f5c4c2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"71bb4a08\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c506768\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\",\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=bd3a38d\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f4be01e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"413c32fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b14767d\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"zoom\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":395,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_css_filter\":\"custom\",\"hover_transition\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(195,39,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(196,39,'envato_tk_source_kit','26'),(197,39,'envato_tk_source_index','10'),(198,41,'_elementor_version','3.19.1'),(199,43,'_elementor_edit_mode','builder'),(200,43,'_elementor_template_type','page'),(201,43,'_elementor_version','3.19.1'),(202,41,'_wp_page_template','elementor_header_footer'),(203,41,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(204,41,'_elementor_data','[{\"id\":\"282c35ff\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"gradient\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7969d227\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":10,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"13cb154\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"4{{0}}4\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_seperator_style\":\"elementskit-border-star elementskit-bullet\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"gradient\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=70063f2\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=70063f2\",\"ekit_heading_title_secondary_bg_color\":\"globals\\/colors?id=accent\",\"ekit_heading_title_secondary_bg_color_b\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_seperator_image\":{\"id\":38,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1417e5df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oops! Page Not Found\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a5c33c9\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b52acf7\",\"elType\":\"widget\",\"settings\":{\"text\":\"back to home\",\"align\":\"center\",\"selected_icon\":{\"value\":\"icon icon-home1\",\"library\":\"ekiticons\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(205,44,'_elementor_edit_mode','builder'),(206,44,'_elementor_template_type','page'),(207,44,'_elementor_version','3.19.1'),(208,44,'_wp_page_template','elementor_header_footer'),(209,44,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(210,44,'_elementor_data','[{\"id\":\"282c35ff\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"gradient\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7969d227\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":10,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"13cb154\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"4{{0}}4\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_seperator_style\":\"elementskit-border-star elementskit-bullet\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_heading_use_focused_title_bg\":\"\",\"ekit_heading_use_title_text_fill\":\"yes\",\"ekit_heading_title_secondary_bg_background\":\"gradient\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=70063f2\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=70063f2\",\"ekit_heading_title_secondary_bg_color\":\"globals\\/colors?id=accent\",\"ekit_heading_title_secondary_bg_color_b\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_seperator_image\":{\"id\":38,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1417e5df\",\"elType\":\"widget\",\"settings\":{\"title\":\"Oops! Page Not Found\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a5c33c9\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6b52acf7\",\"elType\":\"widget\",\"settings\":{\"text\":\"back to home\",\"align\":\"center\",\"selected_icon\":{\"value\":\"icon icon-home1\",\"library\":\"ekiticons\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(211,41,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(212,41,'envato_tk_source_kit','26'),(213,41,'envato_tk_source_index','9'),(214,45,'_elementor_edit_mode','builder'),(215,45,'_elementor_template_type','page'),(216,45,'_elementor_version','3.19.1'),(217,46,'_elementor_edit_mode','builder'),(218,46,'_elementor_template_type','page'),(219,46,'_elementor_version','3.19.1'),(220,45,'_wp_page_template','elementor_header_footer'),(221,45,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(222,45,'_elementor_data','[{\"id\":\"397caf3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":40,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"overflow\":\"hidden\",\"background_background\":\"gradient\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"19054606\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b7535ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41d40025\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"#\\\">Home<\\/a> &gt; blog<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47ab0532\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3dc37cde\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"243c4a24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38fb3820\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7216f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11ea2488\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"64df4639\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"},\"ekit_blog_posts_num\":6,\"ekit_blog_posts_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_text_content_wraper_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_author_icons\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"icon icon-calendar3\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_category_icons\":{\"value\":\"icon icon-folder\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_comment_icons\":{\"value\":\"icon icon-comment\",\"library\":\"ekiticons\"},\"ekit_blog_posts_btn_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_slideshow_gallery\":[],\"ekit_blog_posts_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_normal_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_floating_date_bg_color_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false}]'),(223,47,'_elementor_edit_mode','builder'),(224,47,'_elementor_template_type','page'),(225,47,'_elementor_version','3.19.1'),(226,47,'_wp_page_template','elementor_header_footer'),(227,47,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(228,47,'_elementor_data','[{\"id\":\"397caf3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":40,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"overflow\":\"hidden\",\"background_background\":\"gradient\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"19054606\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b7535ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog\",\"header_size\":\"h1\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41d40025\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a href=\\\"#\\\">Home<\\/a> &gt; blog<\\/p>\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47ab0532\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3dc37cde\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"243c4a24\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38fb3820\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7216f44\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11ea2488\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"64df4639\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"},\"ekit_blog_posts_num\":6,\"ekit_blog_posts_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_text_content_wraper_padding_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_author_icons\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"icon icon-calendar3\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_category_icons\":{\"value\":\"icon icon-folder\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_comment_icons\":{\"value\":\"icon icon-comment\",\"library\":\"ekiticons\"},\"ekit_blog_posts_btn_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_slideshow_gallery\":[],\"ekit_blog_posts_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_normal_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_floating_date_bg_color_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false}]'),(229,45,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(230,45,'envato_tk_source_kit','26'),(231,45,'envato_tk_source_index','8'),(232,48,'_elementor_edit_mode','builder'),(233,48,'_elementor_template_type','section'),(234,48,'_elementor_version','3.19.1'),(235,49,'_elementor_edit_mode','builder'),(236,49,'_elementor_template_type','section'),(237,49,'_elementor_version','3.19.1'),(238,48,'_wp_page_template','elementor_canvas'),(239,48,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(240,48,'_elementor_data','[{\"id\":\"57be1b6\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"30\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"z_index\":5,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e35bcdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d9ba3c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"50866ea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a8e2588\",\"elType\":\"widget\",\"settings\":{\"elementskit_nav_menu\":\"triump-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_nav_menu_logo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#FFFFFF\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Manrope\",\"elementskit_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1499999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.0629999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"700\",\"elementskit_content_typography_text_transform\":\"capitalize\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_item_background_color\":\"#FFFFFF\",\"elementskit_menu_text_color\":\"#122658\",\"elementskit_menu_text_color_tablet\":\"#122658\",\"elementskit_item_color_hover\":\"#0066CC\",\"elementskit_nav_menu_active_text_color\":\"#0066CC\",\"elementskit_style_tab_submenu_indicator_color\":\"#122658\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#122658\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_submenu_item_color\":\"#122658\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_item_text_color_hover\":\"#0066CC\",\"elementskit_panel_submenu_border_border\":\"none\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_submenu_container_width\":\"220px\",\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"8\",\"bottom\":\"10\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_width_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"elementskit_menu_toggle_border_border\":\"none\",\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#0066CC\",\"elementskit_menu_toggle_border_hover_border\":\"none\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_border_border\":\"none\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_menu_close_background_hover_color\":\"#0066CC\",\"elementskit_menu_close_border_hover_border\":\"none\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\",\"elementskit_mobile_menu_logo_width_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=8cd106e\",\"elementskit_menu_text_color\":\"globals\\/colors?id=primary\",\"elementskit_item_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=accent\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=primary\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=primary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_item_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_hover_color\":\"globals\\/colors?id=accent\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=accent\"},\"elementskit_hamburger_icon\":{\"value\":\"\",\"library\":\"\"},\"elementskit_menubar_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menubar_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menubar_background_slideshow_gallery\":[],\"elementskit_item_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_item_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_item_background_slideshow_gallery\":[],\"elementskit_item_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_item_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_item_background_hover_slideshow_gallery\":[],\"elementskit_nav_menu_active_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_nav_menu_active_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_nav_menu_active_bg_color_slideshow_gallery\":[],\"elementskit_menu_item_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_item_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_item_background_slideshow_gallery\":[],\"elementskit_menu_item_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_item_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_item_background_hover_slideshow_gallery\":[],\"elementskit_nav_sub_menu_active_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_nav_sub_menu_active_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_nav_sub_menu_active_bg_color_slideshow_gallery\":[],\"elementskit_submenu_container_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_submenu_container_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_submenu_container_background_slideshow_gallery\":[],\"elementskit_menu_toggle_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_toggle_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_toggle_background_slideshow_gallery\":[],\"elementskit_menu_toggle_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_toggle_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_toggle_background_hover_slideshow_gallery\":[],\"elementskit_menu_close_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_close_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_close_background_slideshow_gallery\":[],\"elementskit_menu_close_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_close_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_close_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"3d3a7393\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49052dc4\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"right\",\"hover_animation\":\"grow\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(241,50,'_elementor_edit_mode','builder'),(242,50,'_elementor_template_type','section'),(243,50,'_elementor_version','3.19.1'),(244,50,'_wp_page_template','default'),(245,50,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(246,50,'_elementor_data','[{\"id\":\"57be1b6\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"30\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"z_index\":5,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e35bcdc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d9ba3c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"50866ea1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a8e2588\",\"elType\":\"widget\",\"settings\":{\"elementskit_nav_menu\":\"triump-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_nav_menu_logo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#FFFFFF\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Manrope\",\"elementskit_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1499999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.0629999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"700\",\"elementskit_content_typography_text_transform\":\"capitalize\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_item_background_color\":\"#FFFFFF\",\"elementskit_menu_text_color\":\"#122658\",\"elementskit_menu_text_color_tablet\":\"#122658\",\"elementskit_item_color_hover\":\"#0066CC\",\"elementskit_nav_menu_active_text_color\":\"#0066CC\",\"elementskit_style_tab_submenu_indicator_color\":\"#122658\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#122658\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_submenu_item_color\":\"#122658\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_item_text_color_hover\":\"#0066CC\",\"elementskit_panel_submenu_border_border\":\"none\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_submenu_container_width\":\"220px\",\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"8\",\"bottom\":\"10\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_width_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"elementskit_menu_toggle_border_border\":\"none\",\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#0066CC\",\"elementskit_menu_toggle_border_hover_border\":\"none\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_border_border\":\"none\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_menu_close_background_hover_color\":\"#0066CC\",\"elementskit_menu_close_border_hover_border\":\"none\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\",\"elementskit_mobile_menu_logo_width_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=8cd106e\",\"elementskit_menu_text_color\":\"globals\\/colors?id=primary\",\"elementskit_item_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=accent\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=primary\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=primary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_item_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_hover_color\":\"globals\\/colors?id=accent\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=accent\"},\"elementskit_hamburger_icon\":{\"value\":\"\",\"library\":\"\"},\"elementskit_menubar_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menubar_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menubar_background_slideshow_gallery\":[],\"elementskit_item_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_item_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_item_background_slideshow_gallery\":[],\"elementskit_item_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_item_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_item_background_hover_slideshow_gallery\":[],\"elementskit_nav_menu_active_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_nav_menu_active_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_nav_menu_active_bg_color_slideshow_gallery\":[],\"elementskit_menu_item_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_item_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_item_background_slideshow_gallery\":[],\"elementskit_menu_item_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_item_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_item_background_hover_slideshow_gallery\":[],\"elementskit_nav_sub_menu_active_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_nav_sub_menu_active_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_nav_sub_menu_active_bg_color_slideshow_gallery\":[],\"elementskit_submenu_container_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_submenu_container_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_submenu_container_background_slideshow_gallery\":[],\"elementskit_menu_toggle_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_toggle_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_toggle_background_slideshow_gallery\":[],\"elementskit_menu_toggle_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_toggle_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_toggle_background_hover_slideshow_gallery\":[],\"elementskit_menu_close_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_close_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_close_background_slideshow_gallery\":[],\"elementskit_menu_close_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_close_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"elementskit_menu_close_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"3d3a7393\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49052dc4\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"right\",\"hover_animation\":\"grow\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(247,48,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(248,48,'envato_tk_source_kit','26'),(249,48,'envato_tk_source_index','11'),(250,51,'_elementor_edit_mode','builder'),(251,51,'_elementor_template_type','page'),(252,51,'_elementor_version','3.19.1'),(253,52,'_elementor_edit_mode','builder'),(254,52,'_elementor_template_type','page'),(255,52,'_elementor_version','3.19.1'),(256,51,'_wp_page_template','elementor_header_footer'),(257,51,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(258,51,'_elementor_data','[{\"id\":\"6794e059\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"overflow\":\"hidden\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b69224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"356bcf22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a2aea10\",\"elType\":\"widget\",\"settings\":{\"title\":\"who i am ?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71d231e8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"meet the coach {{dyas kardinal}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3ea5d417\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"69f3cca4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read my book\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4841099c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"vw\",\"size\":55,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"734fb57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a2a9e9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"bottom center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"initial\",\"_background_bg_width\":{\"unit\":\"vw\",\"size\":33,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"_background_color\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d9cbf30\",\"elType\":\"section\",\"settings\":{\"overflow\":\"hidden\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"342ce9e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50f3708\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6dec0a49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43fc3df5\",\"elType\":\"widget\",\"settings\":{\"title\":\"what i\'ve been through\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b32bb8a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"my journey to became a {{life coach}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"79046930\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5c8ab3de\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3303d61c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":35,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100,\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32a4cf4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"you need to understand what the meaning for your existence\",\"header_size\":\"h4\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c44b967\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.<\\/p>\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3d1d119d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21.956,\"_inline_size_tablet\":50,\"content_position\":\"bottom\",\"background_color_stop\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"globals\\/colors?id=ba7c600\",\"background_color_b\":\"globals\\/colors?id=bd3a38d\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3546ee1a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Vestibulum dignissim turpis vel\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"60c35969\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21.616,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"content_position_tablet\":\"center\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a0b8ed7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Maecenas vitae nulla et nisl blandit\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"53c5f4a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21.395,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58da2133\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Duis tempus commodo velit\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56698936\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"overflow\":\"hidden\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a6b7d2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"19dbda63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c05a0af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size\":\"custom\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"66893565\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46474b87\",\"elType\":\"widget\",\"settings\":{\"title\":\"my story\",\"header_size\":\"h6\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39ee7148\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Break Free from Constraints & {{Aim Higher!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_tablet\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"609562f3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5db498dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53867b8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"591b67d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46135e18\",\"elType\":\"widget\",\"settings\":{\"title\":\"2000\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53dc0ce4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Award for Outstanding Personal Development Services\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e657aea\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400,\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c305d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1fc84732\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4d701170\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a935a0e\",\"elType\":\"widget\",\"settings\":{\"title\":\"2010\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"745bef0e\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Year\'s Best Life Coaching Program\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e9938e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":600,\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58bd76d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d026114\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"78aa4e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1802254\",\"elType\":\"widget\",\"settings\":{\"title\":\"2020\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31f41dad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Innovator in Mindset Development and Training Behavioral Coaching\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5d19ae65\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":307,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f6564d8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3102b60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50fb7927\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6532f50f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6f221\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"720313c3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"54207f46\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"},\"ekit_testimonial_wartermarks\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-left-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-right-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_slideshow_gallery\":[],\"ekit_testimonial_layout_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_slideshow_gallery\":[],\"ekit_testimonial_active_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_slideshow_gallery\":[],\"ekit_testimonial_client_image_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_slideshow_gallery\":[],\"ekit_testimonial_nav_background_normal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_slideshow_gallery\":[],\"ekit_testimonial_nav_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"3209e3dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1af87430\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1ec53818\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"243a33a9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68067e4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d8a6071\",\"elType\":\"widget\",\"settings\":{\"carousel\":[],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(259,53,'_elementor_edit_mode','builder'),(260,53,'_elementor_template_type','page'),(261,53,'_elementor_version','3.19.1'),(262,53,'_wp_page_template','elementor_header_footer'),(263,53,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(264,53,'_elementor_data','[{\"id\":\"6794e059\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"overflow\":\"hidden\",\"structure\":\"20\",\"background_background\":\"gradient\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b69224\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"356bcf22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a2aea10\",\"elType\":\"widget\",\"settings\":{\"title\":\"who i am ?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"71d231e8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"meet the coach {{dyas kardinal}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3ea5d417\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"69f3cca4\",\"elType\":\"widget\",\"settings\":{\"text\":\"read my book\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4841099c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_position\":\"bottom center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"vw\",\"size\":55,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"734fb57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":31,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2a2a9e9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_background_background\":\"classic\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_position\":\"bottom center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"initial\",\"_background_bg_width\":{\"unit\":\"vw\",\"size\":33,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"_background_color\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1d9cbf30\",\"elType\":\"section\",\"settings\":{\"overflow\":\"hidden\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"342ce9e4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50f3708\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6dec0a49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43fc3df5\",\"elType\":\"widget\",\"settings\":{\"title\":\"what i\'ve been through\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b32bb8a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"my journey to became a {{life coach}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"79046930\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5c8ab3de\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3303d61c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":35,\"_inline_size_tablet\":50,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"4\",\"bottom\":\"4\",\"left\":\"4\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100,\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32a4cf4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"you need to understand what the meaning for your existence\",\"header_size\":\"h4\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c44b967\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.<\\/p>\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3d1d119d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21.956,\"_inline_size_tablet\":50,\"content_position\":\"bottom\",\"background_color_stop\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"globals\\/colors?id=ba7c600\",\"background_color_b\":\"globals\\/colors?id=bd3a38d\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3546ee1a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Vestibulum dignissim turpis vel\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"60c35969\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21.616,\"_inline_size_tablet\":50,\"content_position\":\"center\",\"content_position_tablet\":\"center\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a0b8ed7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Maecenas vitae nulla et nisl blandit\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"53c5f4a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":21.395,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58da2133\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Duis tempus commodo velit\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=primary\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56698936\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":100,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"overflow\":\"hidden\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding_tablet\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"3\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a6b7d2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"19dbda63\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"-50\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c05a0af\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_mask_size\":\"custom\",\"_mask_size_scale\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"66893565\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46474b87\",\"elType\":\"widget\",\"settings\":{\"title\":\"my story\",\"header_size\":\"h6\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39ee7148\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Break Free from Constraints & {{Aim Higher!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_tablet\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"609562f3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200,\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5db498dc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53867b8f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"591b67d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46135e18\",\"elType\":\"widget\",\"settings\":{\"title\":\"2000\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53dc0ce4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Award for Outstanding Personal Development Services\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3e657aea\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400,\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c305d36\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1fc84732\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4d701170\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a935a0e\",\"elType\":\"widget\",\"settings\":{\"title\":\"2010\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"745bef0e\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Year\'s Best Life Coaching Program\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4e9938e8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":600,\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58bd76d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d026114\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"78aa4e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1802254\",\"elType\":\"widget\",\"settings\":{\"title\":\"2020\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31f41dad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Innovator in Mindset Development and Training Behavioral Coaching\",\"header_size\":\"h5\",\"align_mobile\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5d19ae65\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":307,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"16\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f6564d8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3102b60e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50fb7927\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6532f50f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9a6f221\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"720313c3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"54207f46\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"},\"ekit_testimonial_wartermarks\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-left-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-right-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_slideshow_gallery\":[],\"ekit_testimonial_layout_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_slideshow_gallery\":[],\"ekit_testimonial_active_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_slideshow_gallery\":[],\"ekit_testimonial_client_image_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_slideshow_gallery\":[],\"ekit_testimonial_nav_background_normal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_slideshow_gallery\":[],\"ekit_testimonial_nav_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"3209e3dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1af87430\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1ec53818\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"243a33a9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68067e4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d8a6071\",\"elType\":\"widget\",\"settings\":{\"carousel\":[],\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(265,51,'_elementor_page_assets','a:1:{s:6:\"styles\";a:13:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";}}'),(266,51,'envato_tk_source_kit','26'),(267,51,'envato_tk_source_index','2'),(268,54,'_wp_attached_file','2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg'),(269,54,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:54:\"2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\";s:8:\"filesize\";i:256918;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"talk-after-seminar-2021-09-24-03-34-42-utc-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16137;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"talk-after-seminar-2021-09-24-03-34-42-utc-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96402;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"talk-after-seminar-2021-09-24-03-34-42-utc-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8224;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"talk-after-seminar-2021-09-24-03-34-42-utc-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62238;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:56:\"talk-after-seminar-2021-09-24-03-34-42-utc-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178737;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(270,54,'_elementor_source_image_hash','6e6acf4c0b2c47a3aa12340291b41850e0e08cd7'),(271,55,'_wp_attached_file','2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg'),(272,55,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:67:\"2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\";s:8:\"filesize\";i:206307;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:67:\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13361;}s:5:\"large\";a:5:{s:4:\"file\";s:68:\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78446;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6612;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:67:\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50536;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:69:\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144943;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(273,55,'_elementor_source_image_hash','179230b38210a06cd4007dcbf3d9c57a60a86390'),(274,56,'_wp_attached_file','2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg'),(275,56,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:86:\"2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\";s:8:\"filesize\";i:250546;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:86:\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14857;}s:5:\"large\";a:5:{s:4:\"file\";s:87:\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94197;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:86:\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7428;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:86:\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59626;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:88:\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177242;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(276,56,'_elementor_source_image_hash','6203b0626a08ad987df2edec4660c4f635eb2c8f'),(277,57,'_wp_attached_file','2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg'),(278,57,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:86:\"2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\";s:8:\"filesize\";i:242862;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:86:\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16553;}s:5:\"large\";a:5:{s:4:\"file\";s:87:\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99344;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:86:\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7937;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:86:\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64142;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:88:\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184162;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(279,57,'_elementor_source_image_hash','f867fb9837b0c708c659b8650bd788754ea97361'),(280,58,'_wp_attached_file','2024/02/audience-applauding-at-seminar.jpg'),(281,58,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:42:\"2024/02/audience-applauding-at-seminar.jpg\";s:8:\"filesize\";i:219492;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"audience-applauding-at-seminar-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15963;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"audience-applauding-at-seminar-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102012;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"audience-applauding-at-seminar-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7469;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"audience-applauding-at-seminar-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64049;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:44:\"audience-applauding-at-seminar-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198382;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(282,58,'_elementor_source_image_hash','15cc919e86a61b4cd63d1a905f33f63d0b171932'),(283,59,'_wp_attached_file','2024/02/card-mockup-in-seminar.jpg'),(284,59,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:34:\"2024/02/card-mockup-in-seminar.jpg\";s:8:\"filesize\";i:236201;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"card-mockup-in-seminar-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16479;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"card-mockup-in-seminar-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107836;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"card-mockup-in-seminar-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7975;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"card-mockup-in-seminar-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66987;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"card-mockup-in-seminar-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:212004;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(285,59,'_elementor_source_image_hash','5bc7887ac2bf472c3b3698e06797c67c5799a713'),(286,60,'_wp_attached_file','2024/02/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg'),(287,60,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:63:\"2024/02/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\";s:8:\"filesize\";i:259293;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"diverse-people-in-a-seminar-2022-12-16-00-31-38-utc-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14674;}s:5:\"large\";a:5:{s:4:\"file\";s:64:\"diverse-people-in-a-seminar-2022-12-16-00-31-38-utc-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87107;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"diverse-people-in-a-seminar-2022-12-16-00-31-38-utc-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7365;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:63:\"diverse-people-in-a-seminar-2022-12-16-00-31-38-utc-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56174;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:65:\"diverse-people-in-a-seminar-2022-12-16-00-31-38-utc-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165390;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(288,60,'_elementor_source_image_hash','870e1260acfe857f08bade64e7cf41c1ff57a78e'),(289,61,'_wp_attached_file','2024/02/Arrow1.png'),(290,61,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:501;s:6:\"height\";i:1080;s:4:\"file\";s:18:\"2024/02/Arrow1.png\";s:8:\"filesize\";i:19901;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"Arrow1-139x300.png\";s:5:\"width\";i:139;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6236;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"Arrow1-475x1024.png\";s:5:\"width\";i:475;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25924;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Arrow1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2263;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(291,61,'_elementor_source_image_hash','de166933bf43086a4d1f523b8763a8cf08bcdb89'),(292,62,'_elementor_edit_mode','builder'),(293,62,'_elementor_template_type','section'),(294,62,'_elementor_version','3.19.1'),(295,63,'_elementor_edit_mode','builder'),(296,63,'_elementor_template_type','section'),(297,63,'_elementor_version','3.19.1'),(298,62,'_wp_page_template','elementor_header_footer'),(299,62,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(300,62,'_elementor_data','[{\"id\":\"7e242e15\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"11752551\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"233cfed4\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"241879ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5efff10a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"10c1d414\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Full Potential\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f3ad2e0\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Navigate Life\'s Challenges {{with Confidence}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4067c692\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7dcd625\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cf598c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"750cefcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f6a1cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"who i am ?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1cff5583\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Passionate life coach {{dedicated}} to helping\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"5c28d212\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/strong><\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"722cbfd4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28577771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c779613\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5+ years experiance for life coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"77f1da4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d926928\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5,5k client has proven my coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-users1\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6991003d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"49540ba9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31f0ef87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"455803ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"tk_preview\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7a0e0dea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Life Coach Mentor\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\"},\"align_mobile\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"253422c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"55dd0016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"left\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f7d7a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d3c3047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8413d66\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79764c26\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"162bb04b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56706d4e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e670e0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49bde712\",\"elType\":\"widget\",\"settings\":{\"title\":\"SERVICES\",\"header_size\":\"h6\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570a35f8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Unlocking Your Inner Strengths for a {{Fulfilling Life}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"57765bc4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7972bf30\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3bb8099a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"711057f8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"One-on-One Coaching\",\"description_text\":\"Personalized coaching sessions tailored to the individual\'s specific goals and needs.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1c673d9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"-20\",\"bottom\":\"-10\",\"left\":\"40\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"50b48de7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-consult\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Group Coaching\",\"description_text\":\"Conducting coaching sessions in a group setting, where participants can learn from each other.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"67511b67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e5aebf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4734e8ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3681a6f1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Workshops & Seminars\",\"description_text\":\"Offering workshops and seminars on various personal development topics such as goal setting.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"34dbc8fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-16\",\"right\":\"40\",\"bottom\":\"-8\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d635f9f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-chat\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Online Coaching Programs\",\"description_text\":\"Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46a0f718\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"592bfce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f184ef5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"748d872\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d10423c\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5563a576\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"73472efc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fa544a0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15499bd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b871e03\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a4a7d7c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1726c1ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c8588cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd939fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"19eb248c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34fe32e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27428492\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6fb171f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2dfd3a2f\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39593eda\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1bb42ff\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"262d44d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"353c79d4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c4dd474\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"526b2aed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2ce55cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a6591ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7622dda8\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3165df\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6c67527c\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"},\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"4952d8f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"53830498\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c3b2af9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d8d5ec8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6fb3673f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"705727e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a1a35d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3d3e2a28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37951635\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ab86c94\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ddaa1a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a0cdb4c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4831ad2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3132364a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ff326b0\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b76df2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ab78962\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"71e8de29\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"410a34f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ac6d2de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cb896c\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19c49054\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"499915d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c0bd92f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3baa6e8c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2269cbd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6923425e\",\"elType\":\"section\",\"settings\":{\"z_index\":1,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14f844d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"855774f\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76cbbc5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"503bcfcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26c917c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"56dde43c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2eccbcba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"248bff2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3293bb15\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d54a56d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c3329\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"518e2c0e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfb9b12\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5865c2ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6edf370b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"420ce513\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e594f15\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1aeca416\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9f05398\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"6b672296\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"28187222\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63b2def6\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2ae4580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"6098e1fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b51ffb9\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"54ceb993\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"326f9031\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"333ad694\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b22a24a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56b9758c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2fb4026e\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a3c6120\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"c35761b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"},\"ekit_testimonial_wartermarks\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-left-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-right-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_slideshow_gallery\":[],\"ekit_testimonial_layout_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_slideshow_gallery\":[],\"ekit_testimonial_active_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_slideshow_gallery\":[],\"ekit_testimonial_client_image_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_slideshow_gallery\":[],\"ekit_testimonial_nav_background_normal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_slideshow_gallery\":[],\"ekit_testimonial_nav_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"4e2e0dd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a98b4c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67894639\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"467f7f07\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3384c2d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"139f0e45\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c23ab6b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e34047b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c3b7f77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53a1e5c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42de0ac8\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c51d35\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"36782ce2\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"316f2ef5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2fbaede9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c4ed980\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\",\"ekit_acc_is_active\":\"no\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\",\"ekit_acc_is_active\":\"no\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_left_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_left_icon_actives\":{\"value\":\"icon icon-up-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_right_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_right_icon_actives\":{\"value\":\"icon icon-up-arrow\",\"library\":\"ekiticons\"},\"ekit_accordion_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_slideshow_gallery\":[],\"ekit_accordion_background_close_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_slideshow_gallery\":[],\"ekit_accordion_content_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_slideshow_gallery\":[],\"ekit_accordion_icon_box_open_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_close_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_slideshow_gallery\":[],\"ekit_accordion_closed_icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"3e9d2b90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2dacf797\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\",\"ekit_acc_is_active\":\"no\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\",\"ekit_acc_is_active\":\"no\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_left_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_left_icon_actives\":{\"value\":\"icon icon-up-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_right_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_right_icon_actives\":{\"value\":\"icon icon-up-arrow\",\"library\":\"ekiticons\"},\"ekit_accordion_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_slideshow_gallery\":[],\"ekit_accordion_background_close_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_slideshow_gallery\":[],\"ekit_accordion_content_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_slideshow_gallery\":[],\"ekit_accordion_icon_box_open_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_close_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_slideshow_gallery\":[],\"ekit_accordion_closed_icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"28cc4f72\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fe35393\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"772021cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69562dee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6769fef4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3925bf96\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1956759c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"944aace\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40a3f3f3\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1fe5d9e2\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"},\"ekit_blog_posts_meta_author_icons\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"icon icon-calendar3\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_category_icons\":{\"value\":\"icon icon-folder\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_comment_icons\":{\"value\":\"icon icon-comment\",\"library\":\"ekiticons\"},\"ekit_blog_posts_btn_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_slideshow_gallery\":[],\"ekit_blog_posts_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_normal_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_floating_date_bg_color_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22d3fb67\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"18801db7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b731493\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cf62bee\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3deb33b2\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e1b02e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"732f659a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"709478b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"96f255b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41b6f6b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74913f58\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(301,64,'_elementor_edit_mode','builder'),(302,64,'_elementor_template_type','section'),(303,64,'_elementor_version','3.19.1'),(304,64,'_wp_page_template','default'),(305,64,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wp_postmeta` VALUES (306,64,'_elementor_data','[{\"id\":\"7e242e15\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"11752551\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"233cfed4\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"241879ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5efff10a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"10c1d414\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Full Potential\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f3ad2e0\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Navigate Life\'s Challenges {{with Confidence}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4067c692\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7dcd625\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6cf598c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"750cefcc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4f6a1cf\",\"elType\":\"widget\",\"settings\":{\"title\":\"who i am ?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1cff5583\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Passionate life coach {{dedicated}} to helping\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"5c28d212\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/strong><\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"722cbfd4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28577771\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c779613\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5+ years experiance for life coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"77f1da4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d926928\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5,5k client has proven my coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-users1\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6991003d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"49540ba9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31f0ef87\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"455803ec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"tk_preview\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"align_mobile\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7a0e0dea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Life Coach Mentor\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\"},\"align_mobile\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"253422c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"55dd0016\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"left\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1f7d7a6c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d3c3047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8413d66\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79764c26\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"162bb04b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56706d4e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e670e0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49bde712\",\"elType\":\"widget\",\"settings\":{\"title\":\"SERVICES\",\"header_size\":\"h6\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570a35f8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Unlocking Your Inner Strengths for a {{Fulfilling Life}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"57765bc4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7972bf30\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3bb8099a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"711057f8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"One-on-One Coaching\",\"description_text\":\"Personalized coaching sessions tailored to the individual\'s specific goals and needs.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1c673d9b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"-20\",\"bottom\":\"-10\",\"left\":\"40\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"50b48de7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-consult\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Group Coaching\",\"description_text\":\"Conducting coaching sessions in a group setting, where participants can learn from each other.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"67511b67\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e5aebf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4734e8ac\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3681a6f1\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Workshops & Seminars\",\"description_text\":\"Offering workshops and seminars on various personal development topics such as goal setting.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"34dbc8fc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-16\",\"right\":\"40\",\"bottom\":\"-8\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7d635f9f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-chat\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Online Coaching Programs\",\"description_text\":\"Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46a0f718\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"592bfce\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f184ef5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"748d872\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d10423c\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5563a576\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"73472efc\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2fa544a0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15499bd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b871e03\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a4a7d7c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1726c1ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c8588cc\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fd939fc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"19eb248c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34fe32e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27428492\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6fb171f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2dfd3a2f\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39593eda\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1bb42ff\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"262d44d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"353c79d4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c4dd474\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"526b2aed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2ce55cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a6591ea\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7622dda8\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c3165df\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6c67527c\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"},\"ekit_progressbar_icons\":{\"value\":\"icon icon-arrow-right\",\"library\":\"ekiticons\"},\"ekit_progressbar_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_progressbar_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_progressbar_background_slideshow_gallery\":[],\"ekit_progressbar_track_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_progressbar_track_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_progressbar_track_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"4952d8f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"53830498\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c3b2af9\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d8d5ec8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6fb3673f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"705727e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a1a35d0\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"3d3e2a28\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"37951635\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ab86c94\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ddaa1a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a0cdb4c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4831ad2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3132364a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ff326b0\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9b76df2\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ab78962\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"71e8de29\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"410a34f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ac6d2de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70cb896c\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19c49054\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"499915d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4c0bd92f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"3baa6e8c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2269cbd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6923425e\",\"elType\":\"section\",\"settings\":{\"z_index\":1,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14f844d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"855774f\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76cbbc5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"503bcfcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26c917c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"56dde43c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"2eccbcba\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"248bff2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3293bb15\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d54a56d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c3329\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"518e2c0e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfb9b12\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5865c2ff\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6edf370b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"420ce513\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4e594f15\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1aeca416\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"9f05398\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"6b672296\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"28187222\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63b2def6\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2ae4580b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"6098e1fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b51ffb9\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"54ceb993\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"326f9031\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"333ad694\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b22a24a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"56b9758c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2fb4026e\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a3c6120\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"c35761b\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"use_hover_logo\":\"no\",\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"},\"ekit_testimonial_wartermarks\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-left-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-right-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_slideshow_gallery\":[],\"ekit_testimonial_layout_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_slideshow_gallery\":[],\"ekit_testimonial_active_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_slideshow_gallery\":[],\"ekit_testimonial_client_image_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_slideshow_gallery\":[],\"ekit_testimonial_nav_background_normal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_slideshow_gallery\":[],\"ekit_testimonial_nav_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"4e2e0dd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5a98b4c1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"67894639\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"467f7f07\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3384c2d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"139f0e45\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"navigation_previous_icon\":{\"value\":\"\",\"library\":\"\"},\"navigation_next_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c23ab6b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3e34047b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c3b7f77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53a1e5c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42de0ac8\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79c51d35\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"36782ce2\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"316f2ef5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2fbaede9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c4ed980\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\",\"ekit_acc_is_active\":\"no\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\",\"ekit_acc_is_active\":\"no\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_left_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_left_icon_actives\":{\"value\":\"icon icon-up-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_right_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_right_icon_actives\":{\"value\":\"icon icon-up-arrow\",\"library\":\"ekiticons\"},\"ekit_accordion_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_slideshow_gallery\":[],\"ekit_accordion_background_close_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_slideshow_gallery\":[],\"ekit_accordion_content_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_slideshow_gallery\":[],\"ekit_accordion_icon_box_open_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_close_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_slideshow_gallery\":[],\"ekit_accordion_closed_icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"3e9d2b90\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2dacf797\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\",\"ekit_acc_is_active\":\"no\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\",\"ekit_acc_is_active\":\"no\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"},\"ekit_accordion_left_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_left_icon_actives\":{\"value\":\"icon icon-up-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_right_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_right_icon_actives\":{\"value\":\"icon icon-up-arrow\",\"library\":\"ekiticons\"},\"ekit_accordion_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_slideshow_gallery\":[],\"ekit_accordion_background_close_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_slideshow_gallery\":[],\"ekit_accordion_content_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_slideshow_gallery\":[],\"ekit_accordion_icon_box_open_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_close_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_slideshow_gallery\":[],\"ekit_accordion_closed_icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"28cc4f72\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fe35393\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"772021cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69562dee\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6769fef4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3925bf96\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1956759c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"944aace\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40a3f3f3\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1fe5d9e2\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"},\"ekit_blog_posts_meta_author_icons\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_date_icons\":{\"value\":\"icon icon-calendar3\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_category_icons\":{\"value\":\"icon icon-folder\",\"library\":\"ekiticons\"},\"ekit_blog_posts_meta_comment_icons\":{\"value\":\"icon icon-comment\",\"library\":\"ekiticons\"},\"ekit_blog_posts_btn_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_blog_posts_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_slideshow_gallery\":[],\"ekit_blog_posts_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_normal_slideshow_gallery\":[],\"ekit_blog_posts_meta_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_meta_background_hover_slideshow_gallery\":[],\"ekit_blog_posts_floating_date_bg_color_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_floating_date_bg_color_group_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_border_highlight_bg_color_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_border_highlight_bg_color_hover_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_color_slideshow_gallery\":[],\"ekit_blog_posts_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_blog_posts_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"22d3fb67\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"18801db7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b731493\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cf62bee\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"title_left_border_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"title_left_border_color_slideshow_gallery\":[],\"ekit_heading_focused_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_focused_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_secondary_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_secondary_bg_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_left_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_left_slideshow_gallery\":[],\"ekit_heading_sub_title_border_color_right_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_heading_sub_title_border_color_right_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3deb33b2\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"78e1b02e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"732f659a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"709478b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"96f255b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41b6f6b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74913f58\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(307,62,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(308,62,'envato_tk_source_kit','26'),(309,62,'envato_tk_source_index','1'),(312,13,'ekit_post_views_count','7'),(316,65,'_edit_last','1'),(317,65,'_wp_page_template','elementor_canvas'),(318,65,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(319,65,'ehf_target_exclude_locations','a:0:{}'),(320,65,'ehf_target_user_roles','a:1:{i:0;s:3:\"all\";}'),(321,65,'ehf_template_type','type_footer'),(322,65,'_edit_lock','1708085008:1'),(323,65,'_elementor_edit_mode','builder'),(324,65,'_elementor_template_type','wp-post'),(325,65,'_elementor_version','3.19.2'),(327,65,'ekit_post_views_count','5'),(337,68,'_wp_page_template','elementor_header_footer'),(338,68,'_elementor_edit_mode','builder'),(339,68,'_elementor_template_type','wp-post'),(340,68,'_elementor_version','3.19.2'),(342,69,'_wp_page_template','elementor_header_footer'),(343,69,'_elementor_edit_mode','builder'),(344,69,'_elementor_template_type','wp-post'),(345,69,'_elementor_version','3.19.2'),(347,65,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(348,65,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>A Versatile Tycoon, <\\/strong><strong>Proficient in Diverse Realms<\\/strong><\\/p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.\\u00a0<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Realms\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Manufacturing Nutraceutical\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#manufacturing\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hospital & Pharmacies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Sports\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Power Politics\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Feel Foundation\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accolades\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Memberships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\"},{\"text\":\"Recognitions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Awards\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Certificates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"99ba018\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\",\"link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/in\\/narendraram\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024, All rights reserved.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(349,70,'_wp_page_template','elementor_canvas'),(350,70,'_elementor_edit_mode','builder'),(351,70,'_elementor_template_type','wp-post'),(352,70,'_elementor_version','3.19.2'),(354,70,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(355,70,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Proin quis neque in mi condimentum rutrum.\\u00a0<\\/strong><\\/em><\\/p><p>vulputate at tempor et, sollicitudin id leo. Vivamus laoreet rhoncus nulla at facilisis. Sed egestas luctus mauris, nec molestie.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Courses\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Foundations of Life Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Goal Setting & Action Planning\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Effective Communication\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Transforming Mindset\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Building Resilience & Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"},{\"text\":\"Launching Your Life Coaching Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3095b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"quick links\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Me\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Courses\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Policies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"54da1ce\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ea4ee33\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2023, All rights reserved. Powered by Rometheme.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(356,65,'_elementor_page_assets','a:0:{}'),(369,72,'_wp_page_template','elementor_header_footer'),(370,72,'_elementor_edit_mode','builder'),(371,72,'_elementor_template_type','wp-post'),(372,72,'_elementor_version','3.19.2'),(374,73,'_wp_page_template','elementor_header_footer'),(375,73,'_elementor_edit_mode','builder'),(376,73,'_elementor_template_type','wp-post'),(377,73,'_elementor_version','3.19.2'),(379,13,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(380,13,'_elementor_data','[{\"id\":\"785693fc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"30\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"z_index\":5},\"elements\":[{\"id\":\"52a2e4fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"26b617ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":188,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2eefea4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6368a002\",\"elType\":\"widget\",\"settings\":{\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_nav_menu_logo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#FFFFFF\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Manrope\",\"elementskit_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1499999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.0629999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"700\",\"elementskit_content_typography_text_transform\":\"capitalize\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_item_background_color\":\"#FFFFFF\",\"elementskit_menu_text_color\":\"#5B7674\",\"elementskit_menu_text_color_tablet\":\"#5B7674\",\"elementskit_item_color_hover\":\"#474D4C\",\"elementskit_nav_menu_active_text_color\":\"#6A8D8B\",\"elementskit_style_tab_submenu_indicator_color\":\"#5B7674\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#5B7674\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_color\":\"#5B7674\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_item_text_color_hover\":\"#6A8D8B\",\"elementskit_panel_submenu_border_border\":\"none\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_submenu_container_width\":\"220px\",\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"8\",\"bottom\":\"10\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_width_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"elementskit_menu_toggle_border_border\":\"none\",\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#6A8D8B\",\"elementskit_menu_toggle_border_hover_border\":\"none\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_border_border\":\"none\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_menu_close_background_hover_color\":\"#6A8D8B\",\"elementskit_menu_close_border_hover_border\":\"none\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\",\"elementskit_mobile_menu_logo_width_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=8cd106e\",\"elementskit_menu_text_color\":\"globals\\/colors?id=primary\",\"elementskit_item_color_hover\":\"\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=accent\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=primary\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=primary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_item_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_hover_color\":\"globals\\/colors?id=accent\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=accent\"},\"elementskit_nav_sub_menu_active_text_color\":\"#6A8D8B\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"746164ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b9438a5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Connect\",\"align\":\"right\",\"hover_animation\":\"grow\",\"link\":{\"url\":\"mailto:cmd@lifespan.industries\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"icon icon-email\",\"library\":\"ekiticons\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(381,74,'_wp_page_template','elementor_canvas'),(382,74,'_elementor_edit_mode','builder'),(383,74,'_elementor_template_type','wp-post'),(384,74,'_elementor_version','3.19.2'),(386,74,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(387,74,'_elementor_data','[{\"id\":\"785693fc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"30\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"z_index\":5},\"elements\":[{\"id\":\"52a2e4fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"26b617ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2eefea4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6368a002\",\"elType\":\"widget\",\"settings\":{\"elementskit_nav_menu\":\"triump-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_nav_menu_logo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#FFFFFF\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Manrope\",\"elementskit_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1499999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.0629999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"700\",\"elementskit_content_typography_text_transform\":\"capitalize\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_item_background_color\":\"#FFFFFF\",\"elementskit_menu_text_color\":\"#122658\",\"elementskit_menu_text_color_tablet\":\"#122658\",\"elementskit_item_color_hover\":\"#0066CC\",\"elementskit_nav_menu_active_text_color\":\"#0066CC\",\"elementskit_style_tab_submenu_indicator_color\":\"#122658\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#122658\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_submenu_item_color\":\"#122658\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_item_text_color_hover\":\"#0066CC\",\"elementskit_panel_submenu_border_border\":\"none\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_submenu_container_width\":\"220px\",\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"8\",\"bottom\":\"10\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_width_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"elementskit_menu_toggle_border_border\":\"none\",\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#0066CC\",\"elementskit_menu_toggle_border_hover_border\":\"none\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_border_border\":\"none\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_menu_close_background_hover_color\":\"#0066CC\",\"elementskit_menu_close_border_hover_border\":\"none\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\",\"elementskit_mobile_menu_logo_width_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=8cd106e\",\"elementskit_menu_text_color\":\"globals\\/colors?id=primary\",\"elementskit_item_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=accent\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=primary\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=primary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_item_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_hover_color\":\"globals\\/colors?id=accent\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"746164ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b9438a5\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"right\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(388,13,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(390,75,'_edit_lock','1709869336:1'),(391,75,'_wp_page_template','elementor_header_footer'),(392,75,'_elementor_edit_mode','builder'),(393,75,'_elementor_template_type','wp-page'),(394,75,'_elementor_version','3.19.4'),(402,78,'_wp_page_template','elementor_header_footer'),(403,78,'_elementor_edit_mode','builder'),(404,78,'_elementor_template_type','wp-page'),(405,78,'_elementor_version','3.19.2'),(406,79,'_wp_page_template','elementor_header_footer'),(407,79,'_elementor_edit_mode','builder'),(408,79,'_elementor_template_type','wp-page'),(409,79,'_elementor_version','3.19.2'),(410,75,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(411,75,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"#more\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\",\"_element_id\":\"more\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#5B7674\",\"secondary_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Manrope\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_weight\":\"800\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"_background_color\":\"#6A8D8B\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\",\"ekit_client_logo_slidetosho_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e72d132\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d33ec7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"c6789f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e777d8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"d6c1937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-hospitals.webp\",\"id\":262,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"593703e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79fbe98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"180909c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN SUPER SPECIALITY HOSPITALS\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.<\\/p><p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"0ca2752\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"d4a934e\"}],\"ekit_section_parallax_multi_items\":[],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a6be3b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"a717d76\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca294ac\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Personalized Care Plans\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"5c26093\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"bf7bc5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"2839154\"}]},\"elements\":[{\"id\":\"57a3da7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Total Healthcare Solution\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2a40fda\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"12bcd75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"70bae51\"}]},\"elements\":[{\"id\":\"0286708\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"State of the Art Technology\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"d6f19ba\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"767fb0c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"b10b6d9\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"221144a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"4d2e619\"}]},\"elements\":[{\"id\":\"2194c0e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Fast Track Appointments\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"526e99e\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"460ade8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"e2caeb5\"}]},\"elements\":[{\"id\":\"46a0dc4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Comprehensive Wellness Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"01439c3\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"46e3d08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"56511f3\"}]},\"elements\":[{\"id\":\"5356aaa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Community Outreach Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2dd5a79\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3986c25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb814f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"411d076\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"67f90dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fa6c299\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharmacies.webp\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f18e962\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"826c876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d2b0a2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"286366c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"beb22c8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PHARMACIES\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.<\\/p><p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.<\\/p><p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"811f29c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2749b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"ca658f1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"SPORTS ENTREPRENEURSHIP\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"316e301\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-N-Sports.png\",\"id\":277,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"60\",\"bottom\":\"-40\",\"left\":\"60\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"10\",\"bottom\":\"-35\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c374f29\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"358c537\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"4594096\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":275,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Lions.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"WINNER OF DPCL FIRST SEASON\",\"ekit_image_box_description_text\":\"We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"2d782ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"9f0c61e\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":276,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Vizag-Warriors.webp\",\"alt\":\"Lifespan Vizag Warriors\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PROUD OWNER OF VIZAG WARRIORS\",\"ekit_image_box_description_text\":\"N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"03e91c3\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"9c2a13f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"}},\"elements\":[{\"id\":\"668809d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true},{\"id\":\"49c0436\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d4c2b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"}},\"elements\":[{\"id\":\"4e53857\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true},{\"id\":\"8126d90\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(412,80,'_wp_page_template','elementor_header_footer'),(413,80,'_elementor_edit_mode','builder'),(414,80,'_elementor_template_type','wp-page'),(415,80,'_elementor_version','3.19.2'),(416,80,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(417,80,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Full Potential\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Navigate Life\'s Challenges {{with Confidence}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who i am ?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Passionate life coach {{dedicated}} to helping\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/strong><\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5+ years experiance for life coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5,5k client has proven my coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-users1\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c07fdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"30a2903c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6ec48683\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"tk_preview\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1e7e8c12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Life Coach Mentor\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cd63ba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"7649cb93\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"SERVICES\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Unlocking Your Inner Strengths for a {{Fulfilling Life}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"One-on-One Coaching\",\"description_text\":\"Personalized coaching sessions tailored to the individual\'s specific goals and needs.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"25844cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"-20\",\"bottom\":\"-10\",\"left\":\"40\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-consult\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Group Coaching\",\"description_text\":\"Conducting coaching sessions in a group setting, where participants can learn from each other.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Workshops & Seminars\",\"description_text\":\"Offering workshops and seminars on various personal development topics such as goal setting.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1f8a530e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-16\",\"right\":\"40\",\"bottom\":\"-8\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-chat\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Online Coaching Programs\",\"description_text\":\"Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(418,75,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(421,82,'_wp_attached_file','2024/02/Narendra-Ram-Logo.png'),(422,82,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:29:\"2024/02/Narendra-Ram-Logo.png\";s:8:\"filesize\";i:18575;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Narendra-Ram-Logo-300x180.png\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8989;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Narendra-Ram-Logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4450;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(436,86,'_wp_attached_file','2024/02/Narendra-Ram-Logo-1-1.png'),(437,86,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:33:\"2024/02/Narendra-Ram-Logo-1-1.png\";s:8:\"filesize\";i:16184;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Narendra-Ram-Logo-1-1-300x180.png\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7471;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Narendra-Ram-Logo-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3749;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(438,87,'_wp_page_template','elementor_canvas'),(439,87,'_elementor_edit_mode','builder'),(440,87,'_elementor_template_type','wp-post'),(441,87,'_elementor_version','3.19.2'),(442,87,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(443,87,'_elementor_data','[{\"id\":\"785693fc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"30\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"z_index\":5},\"elements\":[{\"id\":\"52a2e4fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"26b617ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2eefea4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6368a002\",\"elType\":\"widget\",\"settings\":{\"elementskit_nav_menu\":\"triump-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_nav_menu_logo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#FFFFFF\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Manrope\",\"elementskit_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1499999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.0629999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"700\",\"elementskit_content_typography_text_transform\":\"capitalize\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_item_background_color\":\"#FFFFFF\",\"elementskit_menu_text_color\":\"#122658\",\"elementskit_menu_text_color_tablet\":\"#122658\",\"elementskit_item_color_hover\":\"#0066CC\",\"elementskit_nav_menu_active_text_color\":\"#0066CC\",\"elementskit_style_tab_submenu_indicator_color\":\"#122658\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#122658\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_submenu_item_color\":\"#122658\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_item_text_color_hover\":\"#0066CC\",\"elementskit_panel_submenu_border_border\":\"none\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_submenu_container_width\":\"220px\",\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"8\",\"bottom\":\"10\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_width_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"elementskit_menu_toggle_border_border\":\"none\",\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#0066CC\",\"elementskit_menu_toggle_border_hover_border\":\"none\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_border_border\":\"none\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_menu_close_background_hover_color\":\"#0066CC\",\"elementskit_menu_close_border_hover_border\":\"none\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\",\"elementskit_mobile_menu_logo_width_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=8cd106e\",\"elementskit_menu_text_color\":\"globals\\/colors?id=primary\",\"elementskit_item_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=accent\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=primary\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=primary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_item_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_hover_color\":\"globals\\/colors?id=accent\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"746164ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b9438a5\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"right\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(444,87,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(445,88,'_wp_page_template','elementor_canvas'),(446,88,'_elementor_edit_mode','builder'),(447,88,'_elementor_template_type','wp-post'),(448,88,'_elementor_version','3.19.2'),(449,88,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(450,88,'_elementor_data','[{\"id\":\"785693fc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"30\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"z_index\":5},\"elements\":[{\"id\":\"52a2e4fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"26b617ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2eefea4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6368a002\",\"elType\":\"widget\",\"settings\":{\"elementskit_nav_menu\":\"triump-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_nav_menu_logo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#FFFFFF\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Manrope\",\"elementskit_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1499999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.0629999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"700\",\"elementskit_content_typography_text_transform\":\"capitalize\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_item_background_color\":\"#FFFFFF\",\"elementskit_menu_text_color\":\"#122658\",\"elementskit_menu_text_color_tablet\":\"#122658\",\"elementskit_item_color_hover\":\"#0066CC\",\"elementskit_nav_menu_active_text_color\":\"#0066CC\",\"elementskit_style_tab_submenu_indicator_color\":\"#122658\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#122658\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_submenu_item_color\":\"#122658\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_item_text_color_hover\":\"#0066CC\",\"elementskit_panel_submenu_border_border\":\"none\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_submenu_container_width\":\"220px\",\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"8\",\"bottom\":\"10\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_width_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"elementskit_menu_toggle_border_border\":\"none\",\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#0066CC\",\"elementskit_menu_toggle_border_hover_border\":\"none\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_border_border\":\"none\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_menu_close_background_hover_color\":\"#0066CC\",\"elementskit_menu_close_border_hover_border\":\"none\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\",\"elementskit_mobile_menu_logo_width_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=8cd106e\",\"elementskit_menu_text_color\":\"globals\\/colors?id=primary\",\"elementskit_item_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=accent\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=primary\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=primary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_item_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_hover_color\":\"globals\\/colors?id=accent\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"746164ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b9438a5\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"right\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(451,88,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(452,89,'_wp_page_template','elementor_canvas'),(453,89,'_elementor_edit_mode','builder'),(454,89,'_elementor_template_type','wp-post'),(455,89,'_elementor_version','3.19.2'),(456,89,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(457,89,'_elementor_data','[{\"id\":\"785693fc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"30\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"z_index\":5},\"elements\":[{\"id\":\"52a2e4fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"26b617ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":86,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2eefea4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6368a002\",\"elType\":\"widget\",\"settings\":{\"elementskit_nav_menu\":\"triump-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_nav_menu_logo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#FFFFFF\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Manrope\",\"elementskit_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1499999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.0629999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"700\",\"elementskit_content_typography_text_transform\":\"capitalize\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_item_background_color\":\"#FFFFFF\",\"elementskit_menu_text_color\":\"#122658\",\"elementskit_menu_text_color_tablet\":\"#122658\",\"elementskit_item_color_hover\":\"#0066CC\",\"elementskit_nav_menu_active_text_color\":\"#0066CC\",\"elementskit_style_tab_submenu_indicator_color\":\"#122658\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#122658\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_submenu_item_color\":\"#122658\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_item_text_color_hover\":\"#0066CC\",\"elementskit_panel_submenu_border_border\":\"none\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_submenu_container_width\":\"220px\",\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"8\",\"bottom\":\"10\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_width_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"elementskit_menu_toggle_border_border\":\"none\",\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#0066CC\",\"elementskit_menu_toggle_border_hover_border\":\"none\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_border_border\":\"none\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_menu_close_background_hover_color\":\"#0066CC\",\"elementskit_menu_close_border_hover_border\":\"none\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\",\"elementskit_mobile_menu_logo_width_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=8cd106e\",\"elementskit_menu_text_color\":\"globals\\/colors?id=primary\",\"elementskit_item_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=accent\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=primary\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=primary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_item_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_hover_color\":\"globals\\/colors?id=accent\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"746164ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b9438a5\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"right\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(458,89,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(459,90,'_wp_page_template','elementor_canvas'),(460,90,'_elementor_edit_mode','builder'),(461,90,'_elementor_template_type','wp-post'),(462,90,'_elementor_version','3.19.2'),(463,90,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(464,90,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Proin quis neque in mi condimentum rutrum.\\u00a0<\\/strong><\\/em><\\/p><p>vulputate at tempor et, sollicitudin id leo. Vivamus laoreet rhoncus nulla at facilisis. Sed egestas luctus mauris, nec molestie.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Courses\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Foundations of Life Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Goal Setting & Action Planning\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Effective Communication\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Transforming Mindset\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Building Resilience & Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"},{\"text\":\"Launching Your Life Coaching Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3095b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"quick links\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Me\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Courses\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Policies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"54da1ce\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ea4ee33\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2023, All rights reserved. Powered by Rometheme.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(465,90,'_elementor_page_assets','a:0:{}'),(467,91,'_wp_page_template','elementor_canvas'),(468,91,'_elementor_edit_mode','builder'),(469,91,'_elementor_template_type','wp-post'),(470,91,'_elementor_version','3.19.2'),(471,91,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(472,91,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Proin quis neque in mi condimentum rutrum.\\u00a0<\\/strong><\\/em><\\/p><p>vulputate at tempor et, sollicitudin id leo. Vivamus laoreet rhoncus nulla at facilisis. Sed egestas luctus mauris, nec molestie.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Courses\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Foundations of Life Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Goal Setting & Action Planning\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Effective Communication\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Transforming Mindset\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Building Resilience & Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"},{\"text\":\"Launching Your Life Coaching Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3095b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"quick links\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Me\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Courses\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Policies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"54da1ce\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ea4ee33\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2023, All rights reserved. Powered by Rometheme.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(473,91,'_elementor_page_assets','a:0:{}'),(475,92,'_wp_page_template','elementor_canvas'),(476,92,'_elementor_edit_mode','builder'),(477,92,'_elementor_template_type','wp-post'),(478,92,'_elementor_version','3.19.2'),(479,92,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(480,92,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Proin quis neque in mi condimentum rutrum.\\u00a0<\\/strong><\\/em><\\/p><p>vulputate at tempor et, sollicitudin id leo. Vivamus laoreet rhoncus nulla at facilisis. Sed egestas luctus mauris, nec molestie.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Courses\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Foundations of Life Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Goal Setting & Action Planning\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Effective Communication\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Transforming Mindset\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Building Resilience & Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"},{\"text\":\"Launching Your Life Coaching Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3095b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"quick links\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Me\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Courses\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Policies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"54da1ce\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ea4ee33\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2023, All rights reserved. Powered by Rometheme.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(481,92,'_elementor_page_assets','a:0:{}'),(492,94,'_wp_page_template','elementor_canvas'),(493,94,'_elementor_edit_mode','builder'),(494,94,'_elementor_template_type','wp-post'),(495,94,'_elementor_version','3.19.2'),(496,94,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(497,94,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Proin quis neque in mi condimentum rutrum.\\u00a0<\\/strong><\\/em><\\/p><p>vulputate at tempor et, sollicitudin id leo. Vivamus laoreet rhoncus nulla at facilisis. Sed egestas luctus mauris, nec molestie.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Courses\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Foundations of Life Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Goal Setting & Action Planning\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Effective Communication\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Transforming Mindset\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Building Resilience & Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"},{\"text\":\"Launching Your Life Coaching Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3095b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"quick links\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Me\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Courses\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Policies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"54da1ce\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ea4ee33\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2023, All rights reserved. Powered by Rometheme.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(498,94,'_elementor_page_assets','a:0:{}'),(500,95,'_wp_page_template','elementor_canvas'),(501,95,'_elementor_edit_mode','builder'),(502,95,'_elementor_template_type','wp-post'),(503,95,'_elementor_version','3.19.2'),(504,95,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(505,95,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Proin quis neque in mi condimentum rutrum.\\u00a0<\\/strong><\\/em><\\/p><p>vulputate at tempor et, sollicitudin id leo. Vivamus laoreet rhoncus nulla at facilisis. Sed egestas luctus mauris, nec molestie.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Courses\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Foundations of Life Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Goal Setting & Action Planning\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Effective Communication\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Transforming Mindset\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Building Resilience & Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"},{\"text\":\"Launching Your Life Coaching Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3095b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"quick links\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Me\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Courses\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Policies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"54da1ce\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ea4ee33\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2023, All rights reserved. Powered by Rometheme.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(506,95,'_elementor_page_assets','a:0:{}'),(508,96,'_wp_page_template','elementor_canvas'),(509,96,'_elementor_edit_mode','builder'),(510,96,'_elementor_template_type','wp-post'),(511,96,'_elementor_version','3.19.2'),(512,96,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(513,96,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>A Versatile Tycoon, <\\/strong><strong>Proficient in Diverse Realms<\\/strong><\\/p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Philanthropist, Health &amp; Wellness, Sports Entrepreneur.\\u00a0<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Courses\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Foundations of Life Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Goal Setting & Action Planning\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Effective Communication\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Transforming Mindset\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Building Resilience & Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"},{\"text\":\"Launching Your Life Coaching Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3095b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"quick links\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Me\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Courses\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Policies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"54da1ce\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ea4ee33\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024, All rights reserved.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(514,96,'_elementor_page_assets','a:0:{}'),(524,98,'_menu_item_type','custom'),(525,98,'_menu_item_menu_item_parent','0'),(526,98,'_menu_item_object_id','98'),(527,98,'_menu_item_object','custom'),(528,98,'_menu_item_target',''),(529,98,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(530,98,'_menu_item_xfn',''),(531,98,'_menu_item_url','#manufacturing'),(533,99,'_menu_item_type','custom'),(534,99,'_menu_item_menu_item_parent','0'),(535,99,'_menu_item_object_id','99'),(536,99,'_menu_item_object','custom'),(537,99,'_menu_item_target',''),(538,99,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(539,99,'_menu_item_xfn',''),(540,99,'_menu_item_url','#hospitals'),(542,100,'_menu_item_type','custom'),(543,100,'_menu_item_menu_item_parent','0'),(544,100,'_menu_item_object_id','100'),(545,100,'_menu_item_object','custom'),(546,100,'_menu_item_target',''),(547,100,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(548,100,'_menu_item_xfn',''),(549,100,'_menu_item_url','#sports'),(551,101,'_menu_item_type','custom'),(552,101,'_menu_item_menu_item_parent','0'),(553,101,'_menu_item_object_id','101'),(554,101,'_menu_item_object','custom'),(555,101,'_menu_item_target',''),(556,101,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(557,101,'_menu_item_xfn',''),(558,101,'_menu_item_url','#'),(560,102,'_menu_item_type','custom'),(561,102,'_menu_item_menu_item_parent','0'),(562,102,'_menu_item_object_id','102'),(563,102,'_menu_item_object','custom'),(564,102,'_menu_item_target',''),(565,102,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(566,102,'_menu_item_xfn',''),(567,102,'_menu_item_url','#'),(569,103,'_menu_item_type','custom'),(570,103,'_menu_item_menu_item_parent','0'),(571,103,'_menu_item_object_id','103'),(572,103,'_menu_item_object','custom'),(573,103,'_menu_item_target',''),(574,103,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(575,103,'_menu_item_xfn',''),(576,103,'_menu_item_url','#'),(578,104,'_menu_item_type','custom'),(579,104,'_menu_item_menu_item_parent','0'),(580,104,'_menu_item_object_id','104'),(581,104,'_menu_item_object','custom'),(582,104,'_menu_item_target',''),(583,104,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(584,104,'_menu_item_xfn',''),(585,104,'_menu_item_url','#'),(587,105,'_menu_item_type','custom'),(588,105,'_menu_item_menu_item_parent','0'),(589,105,'_menu_item_object_id','105'),(590,105,'_menu_item_object','custom'),(591,105,'_menu_item_target',''),(592,105,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(593,105,'_menu_item_xfn',''),(594,105,'_menu_item_url','#'),(596,106,'_menu_item_type','custom'),(597,106,'_menu_item_menu_item_parent','0'),(598,106,'_menu_item_object_id','106'),(599,106,'_menu_item_object','custom'),(600,106,'_menu_item_target',''),(601,106,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(602,106,'_menu_item_xfn',''),(603,106,'_menu_item_url','#'),(605,107,'_wp_page_template','elementor_canvas'),(606,107,'_elementor_edit_mode','builder'),(607,107,'_elementor_template_type','wp-post'),(608,107,'_elementor_version','3.19.2'),(609,107,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(610,107,'_elementor_data','[{\"id\":\"785693fc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"30\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"z_index\":5},\"elements\":[{\"id\":\"52a2e4fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"26b617ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":86,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2eefea4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6368a002\",\"elType\":\"widget\",\"settings\":{\"elementskit_nav_menu\":\"triump-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_nav_menu_logo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#FFFFFF\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Manrope\",\"elementskit_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1499999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.0629999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"700\",\"elementskit_content_typography_text_transform\":\"capitalize\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_item_background_color\":\"#FFFFFF\",\"elementskit_menu_text_color\":\"#122658\",\"elementskit_menu_text_color_tablet\":\"#122658\",\"elementskit_item_color_hover\":\"#0066CC\",\"elementskit_nav_menu_active_text_color\":\"#0066CC\",\"elementskit_style_tab_submenu_indicator_color\":\"#122658\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#122658\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_submenu_item_color\":\"#122658\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_item_text_color_hover\":\"#0066CC\",\"elementskit_panel_submenu_border_border\":\"none\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_submenu_container_width\":\"220px\",\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"8\",\"bottom\":\"10\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_width_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"elementskit_menu_toggle_border_border\":\"none\",\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#0066CC\",\"elementskit_menu_toggle_border_hover_border\":\"none\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_border_border\":\"none\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_menu_close_background_hover_color\":\"#0066CC\",\"elementskit_menu_close_border_hover_border\":\"none\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\",\"elementskit_mobile_menu_logo_width_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=8cd106e\",\"elementskit_menu_text_color\":\"globals\\/colors?id=primary\",\"elementskit_item_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=accent\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=primary\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=primary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_item_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_hover_color\":\"globals\\/colors?id=accent\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"746164ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b9438a5\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"right\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(611,107,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(612,108,'_wp_page_template','elementor_canvas'),(613,108,'_elementor_edit_mode','builder'),(614,108,'_elementor_template_type','wp-post'),(615,108,'_elementor_version','3.19.2'),(616,108,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(617,108,'_elementor_data','[{\"id\":\"785693fc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"30\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"z_index\":5},\"elements\":[{\"id\":\"52a2e4fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"26b617ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":86,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2eefea4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6368a002\",\"elType\":\"widget\",\"settings\":{\"elementskit_nav_menu\":\"triump-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_nav_menu_logo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#FFFFFF\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Manrope\",\"elementskit_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1499999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.0629999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"700\",\"elementskit_content_typography_text_transform\":\"capitalize\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_item_background_color\":\"#FFFFFF\",\"elementskit_menu_text_color\":\"#122658\",\"elementskit_menu_text_color_tablet\":\"#122658\",\"elementskit_item_color_hover\":\"#0066CC\",\"elementskit_nav_menu_active_text_color\":\"#0066CC\",\"elementskit_style_tab_submenu_indicator_color\":\"#122658\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#122658\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_submenu_item_color\":\"#122658\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_item_text_color_hover\":\"#0066CC\",\"elementskit_panel_submenu_border_border\":\"none\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_submenu_container_width\":\"220px\",\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"8\",\"bottom\":\"10\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_width_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"elementskit_menu_toggle_border_border\":\"none\",\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#0066CC\",\"elementskit_menu_toggle_border_hover_border\":\"none\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_border_border\":\"none\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_menu_close_background_hover_color\":\"#0066CC\",\"elementskit_menu_close_border_hover_border\":\"none\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\",\"elementskit_mobile_menu_logo_width_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=8cd106e\",\"elementskit_menu_text_color\":\"globals\\/colors?id=primary\",\"elementskit_item_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=accent\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=primary\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=primary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_item_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_hover_color\":\"globals\\/colors?id=accent\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"746164ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b9438a5\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"right\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(618,108,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(619,109,'_wp_page_template','elementor_canvas'),(620,109,'_elementor_edit_mode','builder'),(621,109,'_elementor_template_type','wp-post'),(622,109,'_elementor_version','3.19.2'),(623,109,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(624,109,'_elementor_data','[{\"id\":\"785693fc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"30\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"z_index\":5},\"elements\":[{\"id\":\"52a2e4fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"26b617ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":86,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2eefea4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6368a002\",\"elType\":\"widget\",\"settings\":{\"elementskit_nav_menu\":\"triump-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_nav_menu_logo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#FFFFFF\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Manrope\",\"elementskit_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1499999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.0629999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"700\",\"elementskit_content_typography_text_transform\":\"capitalize\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_item_background_color\":\"#FFFFFF\",\"elementskit_menu_text_color\":\"#122658\",\"elementskit_menu_text_color_tablet\":\"#122658\",\"elementskit_item_color_hover\":\"#0066CC\",\"elementskit_nav_menu_active_text_color\":\"#0066CC\",\"elementskit_style_tab_submenu_indicator_color\":\"#122658\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#122658\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_submenu_item_color\":\"#122658\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_item_text_color_hover\":\"#0066CC\",\"elementskit_panel_submenu_border_border\":\"none\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_submenu_container_width\":\"220px\",\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"8\",\"bottom\":\"10\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_width_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"elementskit_menu_toggle_border_border\":\"none\",\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#0066CC\",\"elementskit_menu_toggle_border_hover_border\":\"none\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_border_border\":\"none\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_menu_close_background_hover_color\":\"#0066CC\",\"elementskit_menu_close_border_hover_border\":\"none\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\",\"elementskit_mobile_menu_logo_width_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=8cd106e\",\"elementskit_menu_text_color\":\"globals\\/colors?id=primary\",\"elementskit_item_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=accent\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=primary\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=primary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_item_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_hover_color\":\"globals\\/colors?id=accent\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"746164ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b9438a5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Connect\",\"align\":\"right\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(625,109,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(636,111,'_wp_page_template','elementor_canvas'),(637,111,'_elementor_edit_mode','builder'),(638,111,'_elementor_template_type','wp-post'),(639,111,'_elementor_version','3.19.2'),(640,111,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(641,111,'_elementor_data','[{\"id\":\"785693fc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"30\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"z_index\":5},\"elements\":[{\"id\":\"52a2e4fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"26b617ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":86,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2eefea4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6368a002\",\"elType\":\"widget\",\"settings\":{\"elementskit_nav_menu\":\"triump-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_nav_menu_logo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#FFFFFF\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Manrope\",\"elementskit_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1499999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.0629999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"700\",\"elementskit_content_typography_text_transform\":\"capitalize\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_item_background_color\":\"#FFFFFF\",\"elementskit_menu_text_color\":\"#122658\",\"elementskit_menu_text_color_tablet\":\"#122658\",\"elementskit_item_color_hover\":\"#0066CC\",\"elementskit_nav_menu_active_text_color\":\"#0066CC\",\"elementskit_style_tab_submenu_indicator_color\":\"#122658\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#122658\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_submenu_item_color\":\"#122658\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_item_text_color_hover\":\"#0066CC\",\"elementskit_panel_submenu_border_border\":\"none\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_submenu_container_width\":\"220px\",\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"8\",\"bottom\":\"10\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_width_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"elementskit_menu_toggle_border_border\":\"none\",\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#0066CC\",\"elementskit_menu_toggle_border_hover_border\":\"none\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_border_border\":\"none\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_menu_close_background_hover_color\":\"#0066CC\",\"elementskit_menu_close_border_hover_border\":\"none\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\",\"elementskit_mobile_menu_logo_width_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=8cd106e\",\"elementskit_menu_text_color\":\"globals\\/colors?id=primary\",\"elementskit_item_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=accent\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=primary\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=primary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_item_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_hover_color\":\"globals\\/colors?id=accent\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"746164ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b9438a5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Connect\",\"align\":\"right\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(642,111,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(643,112,'_wp_page_template','elementor_canvas'),(644,112,'_elementor_edit_mode','builder'),(645,112,'_elementor_template_type','wp-post'),(646,112,'_elementor_version','3.19.2'),(647,112,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(648,112,'_elementor_data','[{\"id\":\"785693fc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"30\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"z_index\":5},\"elements\":[{\"id\":\"52a2e4fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"26b617ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":86,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2eefea4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6368a002\",\"elType\":\"widget\",\"settings\":{\"elementskit_nav_menu\":\"triump-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_nav_menu_logo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":47,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#FFFFFF\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Manrope\",\"elementskit_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1499999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.0629999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"700\",\"elementskit_content_typography_text_transform\":\"capitalize\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_item_background_color\":\"#FFFFFF\",\"elementskit_menu_text_color\":\"#122658\",\"elementskit_menu_text_color_tablet\":\"#122658\",\"elementskit_item_color_hover\":\"#0066CC\",\"elementskit_nav_menu_active_text_color\":\"#0066CC\",\"elementskit_style_tab_submenu_indicator_color\":\"#122658\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#122658\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_submenu_item_color\":\"#122658\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_item_text_color_hover\":\"#0066CC\",\"elementskit_panel_submenu_border_border\":\"none\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_submenu_container_width\":\"220px\",\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"8\",\"bottom\":\"10\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_width_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"elementskit_menu_toggle_border_border\":\"none\",\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#0066CC\",\"elementskit_menu_toggle_border_hover_border\":\"none\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_border_border\":\"none\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_menu_close_background_hover_color\":\"#0066CC\",\"elementskit_menu_close_border_hover_border\":\"none\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\",\"elementskit_mobile_menu_logo_width_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=8cd106e\",\"elementskit_menu_text_color\":\"globals\\/colors?id=primary\",\"elementskit_item_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=accent\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=primary\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=primary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_item_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_hover_color\":\"globals\\/colors?id=accent\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"746164ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b9438a5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Connect\",\"align\":\"right\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(649,112,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(650,113,'_wp_page_template','elementor_canvas'),(651,113,'_elementor_edit_mode','builder'),(652,113,'_elementor_template_type','wp-post'),(653,113,'_elementor_version','3.19.2'),(654,113,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(655,113,'_elementor_data','[{\"id\":\"785693fc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"30\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"z_index\":5},\"elements\":[{\"id\":\"52a2e4fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"26b617ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":86,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2eefea4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6368a002\",\"elType\":\"widget\",\"settings\":{\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_nav_menu_logo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#FFFFFF\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Manrope\",\"elementskit_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1499999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.0629999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"700\",\"elementskit_content_typography_text_transform\":\"capitalize\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_item_background_color\":\"#FFFFFF\",\"elementskit_menu_text_color\":\"#122658\",\"elementskit_menu_text_color_tablet\":\"#122658\",\"elementskit_item_color_hover\":\"#0066CC\",\"elementskit_nav_menu_active_text_color\":\"#0066CC\",\"elementskit_style_tab_submenu_indicator_color\":\"#122658\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#122658\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_submenu_item_color\":\"#122658\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_item_text_color_hover\":\"#0066CC\",\"elementskit_panel_submenu_border_border\":\"none\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_submenu_container_width\":\"220px\",\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"8\",\"bottom\":\"10\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_width_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"elementskit_menu_toggle_border_border\":\"none\",\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#0066CC\",\"elementskit_menu_toggle_border_hover_border\":\"none\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_border_border\":\"none\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_menu_close_background_hover_color\":\"#0066CC\",\"elementskit_menu_close_border_hover_border\":\"none\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\",\"elementskit_mobile_menu_logo_width_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=8cd106e\",\"elementskit_menu_text_color\":\"globals\\/colors?id=primary\",\"elementskit_item_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=accent\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=primary\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=primary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_item_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_hover_color\":\"globals\\/colors?id=accent\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"746164ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b9438a5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Connect\",\"align\":\"right\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(656,113,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(673,116,'_wp_page_template','elementor_header_footer'),(674,116,'_elementor_edit_mode','builder'),(675,116,'_elementor_template_type','wp-page'),(676,116,'_elementor_version','3.19.2'),(677,116,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(678,116,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Full Potential\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Navigate Life\'s Challenges {{with Confidence}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who i am ?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Passionate life coach {{dedicated}} to helping\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/strong><\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5+ years experiance for life coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5,5k client has proven my coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-users1\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c07fdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"30a2903c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6ec48683\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"tk_preview\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1e7e8c12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Life Coach Mentor\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cd63ba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"7649cb93\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"SERVICES\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Unlocking Your Inner Strengths for a {{Fulfilling Life}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"One-on-One Coaching\",\"description_text\":\"Personalized coaching sessions tailored to the individual\'s specific goals and needs.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"25844cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"-20\",\"bottom\":\"-10\",\"left\":\"40\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-consult\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Group Coaching\",\"description_text\":\"Conducting coaching sessions in a group setting, where participants can learn from each other.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Workshops & Seminars\",\"description_text\":\"Offering workshops and seminars on various personal development topics such as goal setting.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1f8a530e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-16\",\"right\":\"40\",\"bottom\":\"-8\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-chat\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Online Coaching Programs\",\"description_text\":\"Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(679,116,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(680,117,'_wp_page_template','elementor_header_footer'),(681,117,'_elementor_edit_mode','builder'),(682,117,'_elementor_template_type','wp-page'),(683,117,'_elementor_version','3.19.2'),(684,117,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wp_postmeta` VALUES (685,117,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Full Potential\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Navigate Life\'s Challenges {{with Confidence}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who i am ?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Passionate life coach {{dedicated}} to helping\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/strong><\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5+ years experiance for life coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5,5k client has proven my coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-users1\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c07fdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"30a2903c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6ec48683\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"tk_preview\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1e7e8c12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Life Coach Mentor\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cd63ba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"7649cb93\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"SERVICES\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Unlocking Your Inner Strengths for a {{Fulfilling Life}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"One-on-One Coaching\",\"description_text\":\"Personalized coaching sessions tailored to the individual\'s specific goals and needs.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"25844cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"-20\",\"bottom\":\"-10\",\"left\":\"40\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-consult\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Group Coaching\",\"description_text\":\"Conducting coaching sessions in a group setting, where participants can learn from each other.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Workshops & Seminars\",\"description_text\":\"Offering workshops and seminars on various personal development topics such as goal setting.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1f8a530e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-16\",\"right\":\"40\",\"bottom\":\"-8\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-chat\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Online Coaching Programs\",\"description_text\":\"Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(686,117,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(687,118,'_wp_page_template','elementor_header_footer'),(688,118,'_elementor_edit_mode','builder'),(689,118,'_elementor_template_type','wp-page'),(690,118,'_elementor_version','3.19.2'),(691,118,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(692,118,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who i am ?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Passionate life coach {{dedicated}} to helping\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/strong><\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5+ years experiance for life coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5,5k client has proven my coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-users1\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c07fdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"30a2903c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6ec48683\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"tk_preview\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1e7e8c12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Life Coach Mentor\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cd63ba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"7649cb93\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"SERVICES\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Unlocking Your Inner Strengths for a {{Fulfilling Life}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"One-on-One Coaching\",\"description_text\":\"Personalized coaching sessions tailored to the individual\'s specific goals and needs.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"25844cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"-20\",\"bottom\":\"-10\",\"left\":\"40\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-consult\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Group Coaching\",\"description_text\":\"Conducting coaching sessions in a group setting, where participants can learn from each other.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Workshops & Seminars\",\"description_text\":\"Offering workshops and seminars on various personal development topics such as goal setting.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1f8a530e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-16\",\"right\":\"40\",\"bottom\":\"-8\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-chat\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Online Coaching Programs\",\"description_text\":\"Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(693,118,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(702,120,'_wp_page_template','elementor_header_footer'),(703,120,'_elementor_edit_mode','builder'),(704,120,'_elementor_template_type','wp-page'),(705,120,'_elementor_version','3.19.2'),(706,120,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(707,120,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who i am ?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Passionate life coach {{dedicated}} to helping\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/strong><\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5+ years experiance for life coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5,5k client has proven my coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-users1\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c07fdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"30a2903c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6ec48683\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"tk_preview\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1e7e8c12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Life Coach Mentor\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cd63ba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"7649cb93\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"SERVICES\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Unlocking Your Inner Strengths for a {{Fulfilling Life}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"One-on-One Coaching\",\"description_text\":\"Personalized coaching sessions tailored to the individual\'s specific goals and needs.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"25844cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"-20\",\"bottom\":\"-10\",\"left\":\"40\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-consult\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Group Coaching\",\"description_text\":\"Conducting coaching sessions in a group setting, where participants can learn from each other.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Workshops & Seminars\",\"description_text\":\"Offering workshops and seminars on various personal development topics such as goal setting.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1f8a530e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-16\",\"right\":\"40\",\"bottom\":\"-8\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-chat\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Online Coaching Programs\",\"description_text\":\"Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(708,120,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(709,121,'_wp_page_template','elementor_header_footer'),(710,121,'_elementor_edit_mode','builder'),(711,121,'_elementor_template_type','wp-page'),(712,121,'_elementor_version','3.19.2'),(713,121,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(714,121,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who i am ?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Passionate life coach {{dedicated}} to helping\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/strong><\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5+ years experiance for life coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5,5k client has proven my coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-users1\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c07fdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"30a2903c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6ec48683\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"tk_preview\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1e7e8c12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Life Coach Mentor\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cd63ba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"7649cb93\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"SERVICES\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Unlocking Your Inner Strengths for a {{Fulfilling Life}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"One-on-One Coaching\",\"description_text\":\"Personalized coaching sessions tailored to the individual\'s specific goals and needs.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"25844cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"-20\",\"bottom\":\"-10\",\"left\":\"40\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-consult\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Group Coaching\",\"description_text\":\"Conducting coaching sessions in a group setting, where participants can learn from each other.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Workshops & Seminars\",\"description_text\":\"Offering workshops and seminars on various personal development topics such as goal setting.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1f8a530e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-16\",\"right\":\"40\",\"bottom\":\"-8\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-chat\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Online Coaching Programs\",\"description_text\":\"Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(715,121,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(716,122,'_wp_page_template','elementor_header_footer'),(717,122,'_elementor_edit_mode','builder'),(718,122,'_elementor_template_type','wp-page'),(719,122,'_elementor_version','3.19.2'),(720,122,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(721,122,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/strong><\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5+ years experiance for life coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5,5k client has proven my coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-users1\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c07fdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"30a2903c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6ec48683\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"tk_preview\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1e7e8c12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Life Coach Mentor\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cd63ba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"7649cb93\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9cdff9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"ecf2e19\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"dac0c51\",\"elType\":\"widget\",\"settings\":{\"title\":\"who i am ?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bb081d1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Passionate life coach {{dedicated}} to helping\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b08d8ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/strong><\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32b2f67\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"dace54b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0772a3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5+ years experiance for life coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"861d3cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5a50d7b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5,5k client has proven my coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-users1\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b5d37ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a8dc208\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9cddad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"97f00b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"tk_preview\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dffe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Life Coach Mentor\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"79b0339\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"e0e33f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"21307b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"c878b61\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31f3fbb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"SERVICES\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Unlocking Your Inner Strengths for a {{Fulfilling Life}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"One-on-One Coaching\",\"description_text\":\"Personalized coaching sessions tailored to the individual\'s specific goals and needs.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"25844cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"-20\",\"bottom\":\"-10\",\"left\":\"40\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-consult\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Group Coaching\",\"description_text\":\"Conducting coaching sessions in a group setting, where participants can learn from each other.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Workshops & Seminars\",\"description_text\":\"Offering workshops and seminars on various personal development topics such as goal setting.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1f8a530e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-16\",\"right\":\"40\",\"bottom\":\"-8\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-chat\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Online Coaching Programs\",\"description_text\":\"Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(722,122,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(730,124,'_wp_attached_file','2024/02/Untitled-design-2.webp'),(731,124,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:700;s:4:\"file\";s:30:\"2024/02/Untitled-design-2.webp\";s:8:\"filesize\";i:32522;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Untitled-design-2-214x300.webp\";s:5:\"width\";i:214;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14302;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Untitled-design-2-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10508;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(732,125,'_wp_page_template','elementor_header_footer'),(733,125,'_elementor_edit_mode','builder'),(734,125,'_elementor_template_type','wp-page'),(735,125,'_elementor_version','3.19.2'),(736,125,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(737,125,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/strong><\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5+ years experiance for life coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5,5k client has proven my coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-users1\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c07fdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"30a2903c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6ec48683\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"tk_preview\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1e7e8c12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Life Coach Mentor\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cd63ba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"7649cb93\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9cdff9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"ecf2e19\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"dac0c51\",\"elType\":\"widget\",\"settings\":{\"title\":\"who i am ?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bb081d1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Passionate life coach {{dedicated}} to helping\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b08d8ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/strong><\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32b2f67\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"dace54b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0772a3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5+ years experiance for life coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"861d3cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5a50d7b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5,5k client has proven my coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-users1\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b5d37ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a8dc208\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9cddad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"97f00b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"tk_preview\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dffe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Life Coach Mentor\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"79b0339\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"e0e33f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"21307b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"c878b61\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31f3fbb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"SERVICES\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Unlocking Your Inner Strengths for a {{Fulfilling Life}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"One-on-One Coaching\",\"description_text\":\"Personalized coaching sessions tailored to the individual\'s specific goals and needs.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"25844cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"-20\",\"bottom\":\"-10\",\"left\":\"40\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-consult\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Group Coaching\",\"description_text\":\"Conducting coaching sessions in a group setting, where participants can learn from each other.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Workshops & Seminars\",\"description_text\":\"Offering workshops and seminars on various personal development topics such as goal setting.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1f8a530e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-16\",\"right\":\"40\",\"bottom\":\"-8\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-chat\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Online Coaching Programs\",\"description_text\":\"Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(738,125,'_elementor_page_assets','a:1:{s:6:\"styles\";a:35:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";}}'),(739,126,'_wp_page_template','elementor_header_footer'),(740,126,'_elementor_edit_mode','builder'),(741,126,'_elementor_template_type','wp-page'),(742,126,'_elementor_version','3.19.2'),(743,126,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(744,126,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/strong><\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5+ years experiance for life coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5,5k client has proven my coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-users1\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"52c07fdb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"30a2903c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"6ec48683\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"tk_preview\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1e7e8c12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Life Coach Mentor\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"cd63ba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"7649cb93\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9cdff9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"ecf2e19\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"dac0c51\",\"elType\":\"widget\",\"settings\":{\"title\":\"who i am ?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bb081d1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Passionate life coach {{dedicated}} to helping\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"b08d8ba\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/strong><\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32b2f67\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"dace54b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0772a3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5+ years experiance for life coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"861d3cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"5a50d7b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5,5k client has proven my coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-users1\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b5d37ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"a8dc208\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"9cddad0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"_inline_size_tablet\":30,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"97f00b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"tk_preview\",\"align\":\"center\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"26dffe5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Life Coach Mentor\",\"header_size\":\"p\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"79b0339\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"e0e33f7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read more\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"21307b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"c878b61\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31f3fbb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"SERVICES\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Unlocking Your Inner Strengths for a {{Fulfilling Life}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"One-on-One Coaching\",\"description_text\":\"Personalized coaching sessions tailored to the individual\'s specific goals and needs.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"25844cbd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-10\",\"right\":\"-20\",\"bottom\":\"-10\",\"left\":\"40\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-consult\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Group Coaching\",\"description_text\":\"Conducting coaching sessions in a group setting, where participants can learn from each other.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Workshops & Seminars\",\"description_text\":\"Offering workshops and seminars on various personal development topics such as goal setting.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"1f8a530e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-16\",\"right\":\"40\",\"bottom\":\"-8\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"_animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_animation_delay\":600},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-chat\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"Online Coaching Programs\",\"description_text\":\"Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(745,126,'_elementor_page_assets','a:1:{s:6:\"styles\";a:35:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";}}'),(746,127,'_wp_page_template','elementor_header_footer'),(747,127,'_elementor_edit_mode','builder'),(748,127,'_elementor_template_type','wp-page'),(749,127,'_elementor_version','3.19.2'),(750,127,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wp_postmeta` VALUES (751,127,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/strong><\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5+ years experiance for life coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5,5k client has proven my coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-users1\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(752,127,'_elementor_page_assets','a:1:{s:6:\"styles\";a:35:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";}}'),(760,129,'_wp_attached_file','2024/02/placeholder-54.png'),(761,129,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2024/02/placeholder-54.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-54-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-54-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-54-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-54-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(762,129,'_elementor_source_image_hash','8012d19c3155eecdabafa675c94ee8a0c59ea931'),(763,130,'_wp_attached_file','2024/02/image-accordion-7.jpg'),(764,130,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:483;s:6:\"height\";i:460;s:4:\"file\";s:29:\"2024/02/image-accordion-7.jpg\";s:8:\"filesize\";i:42395;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"image-accordion-7-300x286.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9098;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"image-accordion-7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3477;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(765,130,'_elementor_source_image_hash','dbae0b31f12e737e230644d79693db5ca32632df'),(766,131,'_wp_attached_file','2024/02/image-accordion-14.jpg'),(767,131,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:483;s:6:\"height\";i:460;s:4:\"file\";s:30:\"2024/02/image-accordion-14.jpg\";s:8:\"filesize\";i:45545;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"image-accordion-14-300x286.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20087;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"image-accordion-14-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6542;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(768,131,'_elementor_source_image_hash','6a0be60fa2717e1aa0e60ba001ab8dde5c9000e7'),(769,132,'_wp_attached_file','2024/02/image-accordion-10.jpg'),(770,132,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:483;s:6:\"height\";i:460;s:4:\"file\";s:30:\"2024/02/image-accordion-10.jpg\";s:8:\"filesize\";i:67425;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"image-accordion-10-300x286.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22854;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"image-accordion-10-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6145;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(771,132,'_elementor_source_image_hash','f612f58f16af0dd74fce694c959399f303cf41e8'),(772,133,'_wp_attached_file','2024/02/placeholder-292.png'),(773,133,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2024/02/placeholder-292.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"placeholder-292-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"placeholder-292-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"placeholder-292-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"placeholder-292-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(774,133,'_elementor_source_image_hash','bcc7f3da1332e1dcb83015091d0322b4a0a66777'),(775,134,'_wp_attached_file','2024/02/image-accordion-4.jpg'),(776,134,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:483;s:6:\"height\";i:460;s:4:\"file\";s:29:\"2024/02/image-accordion-4.jpg\";s:8:\"filesize\";i:25536;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"image-accordion-4-300x286.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17938;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"image-accordion-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7152;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(777,134,'_elementor_source_image_hash','1f2249992ecef8d5fb23d45cb18f7a9d96de247a'),(778,135,'_wp_attached_file','2024/02/image-accordion-13.jpg'),(779,135,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:483;s:6:\"height\";i:460;s:4:\"file\";s:30:\"2024/02/image-accordion-13.jpg\";s:8:\"filesize\";i:8698;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"image-accordion-13-300x286.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9625;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"image-accordion-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3688;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(780,135,'_elementor_source_image_hash','fae65ad3866df524d73457e1094bfc619b6d0974'),(781,136,'_wp_attached_file','2024/02/Lifespan-Private-Limited.jpg'),(782,136,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:1061;s:4:\"file\";s:36:\"2024/02/Lifespan-Private-Limited.jpg\";s:8:\"filesize\";i:121027;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Lifespan-Private-Limited-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8932;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"Lifespan-Private-Limited-1024x724.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:724;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56354;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Lifespan-Private-Limited-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4831;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"Lifespan-Private-Limited-768x543.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34542;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(783,137,'_wp_page_template','elementor_header_footer'),(784,137,'_elementor_edit_mode','builder'),(785,137,'_elementor_template_type','wp-page'),(786,137,'_elementor_version','3.19.2'),(787,137,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(788,137,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/strong><\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5+ years experiance for life coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5,5k client has proven my coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-users1\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(789,137,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(790,138,'_wp_page_template','elementor_header_footer'),(791,138,'_elementor_edit_mode','builder'),(792,138,'_elementor_template_type','wp-page'),(793,138,'_elementor_version','3.19.2'),(794,138,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(795,138,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/strong><\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5+ years experiance for life coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-microphone\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"5,5k client has proven my coaching\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"icon icon-users1\",\"library\":\"ekiticons\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(796,138,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(797,139,'_wp_page_template','elementor_header_footer'),(798,139,'_elementor_edit_mode','builder'),(799,139,'_elementor_template_type','wp-page'),(800,139,'_elementor_version','3.19.2'),(801,139,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(802,139,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":\"132\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/image-accordion-10.jpg\"},\"ekit_image_box_title_text\":\"This is the heading\",\"ekit_image_box_description_text\":\"Trying to add add image box to your WordPress sites? No worries! \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":134,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/image-accordion-4.jpg\"},\"ekit_image_box_title_text\":\"This is the heading\",\"ekit_image_box_description_text\":\"Want to customize Elementor image box height? Here we have the Solution!\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":135,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/image-accordion-13.jpg\"},\"ekit_image_box_title_text\":\"This is the heading\",\"ekit_image_box_description_text\":\"Do you know how to add Elementor image box with button? \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(803,139,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(811,141,'_wp_attached_file','2024/02/Lifespan-manufacturing-1.jpg'),(812,141,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:400;s:4:\"file\";s:36:\"2024/02/Lifespan-manufacturing-1.jpg\";s:8:\"filesize\";i:54510;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Lifespan-manufacturing-1-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13937;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Lifespan-manufacturing-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8020;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(813,142,'_wp_attached_file','2024/02/Lifespan-manufacturing-2.jpg'),(814,142,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:400;s:4:\"file\";s:36:\"2024/02/Lifespan-manufacturing-2.jpg\";s:8:\"filesize\";i:43107;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Lifespan-manufacturing-2-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12137;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Lifespan-manufacturing-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6613;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(815,143,'_wp_attached_file','2024/02/Lifespan-manufacturing-3.jpg'),(816,143,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:400;s:4:\"file\";s:36:\"2024/02/Lifespan-manufacturing-3.jpg\";s:8:\"filesize\";i:46727;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Lifespan-manufacturing-3-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13003;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Lifespan-manufacturing-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7376;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(817,144,'_wp_page_template','elementor_header_footer'),(818,144,'_elementor_edit_mode','builder'),(819,144,'_elementor_template_type','wp-page'),(820,144,'_elementor_version','3.19.2'),(821,144,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(822,144,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":\"132\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/image-accordion-10.jpg\"},\"ekit_image_box_title_text\":\"This is the heading\",\"ekit_image_box_description_text\":\"Trying to add add image box to your WordPress sites? No worries! \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":134,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/image-accordion-4.jpg\"},\"ekit_image_box_title_text\":\"This is the heading\",\"ekit_image_box_description_text\":\"Want to customize Elementor image box height? Here we have the Solution!\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":135,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/image-accordion-13.jpg\"},\"ekit_image_box_title_text\":\"This is the heading\",\"ekit_image_box_description_text\":\"Do you know how to add Elementor image box with button? \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(823,144,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(824,145,'_wp_page_template','elementor_header_footer'),(825,145,'_elementor_edit_mode','builder'),(826,145,'_elementor_template_type','wp-page'),(827,145,'_elementor_version','3.19.2'),(828,145,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(829,145,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":\"132\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/image-accordion-10.jpg\"},\"ekit_image_box_title_text\":\"This is the heading\",\"ekit_image_box_description_text\":\"Trying to add add image box to your WordPress sites? No worries! \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":134,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/image-accordion-4.jpg\"},\"ekit_image_box_title_text\":\"This is the heading\",\"ekit_image_box_description_text\":\"Want to customize Elementor image box height? Here we have the Solution!\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":135,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/image-accordion-13.jpg\"},\"ekit_image_box_title_text\":\"This is the heading\",\"ekit_image_box_description_text\":\"Do you know how to add Elementor image box with button? \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(830,145,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(831,146,'_wp_page_template','elementor_header_footer'),(832,146,'_elementor_edit_mode','builder'),(833,146,'_elementor_template_type','wp-page'),(834,146,'_elementor_version','3.19.2'),(835,146,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(836,146,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing prioritise customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(837,146,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(845,148,'_wp_attached_file','2024/02/placeholder-316.png'),(846,148,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2024/02/placeholder-316.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"placeholder-316-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"placeholder-316-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"placeholder-316-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"placeholder-316-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(847,148,'_elementor_source_image_hash','b6538f19ef292497f3d8a4eee9d793b945902b31'),(848,149,'_wp_attached_file','2024/02/client_5_black.png'),(849,149,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:125;s:6:\"height\";i:80;s:4:\"file\";s:26:\"2024/02/client_5_black.png\";s:8:\"filesize\";i:1739;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(850,149,'_elementor_source_image_hash','e5e3953c1bda6bb245115b1c01e1501736c5a084'),(851,150,'_wp_attached_file','2024/02/placeholder-317.png'),(852,150,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2024/02/placeholder-317.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"placeholder-317-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"placeholder-317-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"placeholder-317-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"placeholder-317-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(853,150,'_elementor_source_image_hash','dc6547f690deaf91cd1a6fd8fffc25dd87a6331b'),(854,151,'_wp_attached_file','2024/02/client_6_black.png'),(855,151,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:124;s:6:\"height\";i:80;s:4:\"file\";s:26:\"2024/02/client_6_black.png\";s:8:\"filesize\";i:1586;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(856,151,'_elementor_source_image_hash','c8bef05f3a9388ddf6fca8912bd990c106914c05'),(857,152,'_wp_attached_file','2024/02/placeholder-318.png');
INSERT INTO `wp_postmeta` VALUES (858,152,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2024/02/placeholder-318.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"placeholder-318-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"placeholder-318-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"placeholder-318-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"placeholder-318-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(859,152,'_elementor_source_image_hash','15a183fcf1667eaeaec30e889a6772b8effceecb'),(860,153,'_wp_attached_file','2024/02/client_8_black.png'),(861,153,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:113;s:6:\"height\";i:80;s:4:\"file\";s:26:\"2024/02/client_8_black.png\";s:8:\"filesize\";i:1638;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(862,153,'_elementor_source_image_hash','acf1e75ddffd96b41e4d7c1995eebe64fb5b9cf8'),(863,154,'_wp_attached_file','2024/02/placeholder-319.png'),(864,154,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2024/02/placeholder-319.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"placeholder-319-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"placeholder-319-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"placeholder-319-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"placeholder-319-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(865,154,'_elementor_source_image_hash','88358925f45e8e8fab708e9ffdbe89a33ff847a3'),(866,155,'_wp_attached_file','2024/02/client_4_black.png'),(867,155,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:110;s:6:\"height\";i:80;s:4:\"file\";s:26:\"2024/02/client_4_black.png\";s:8:\"filesize\";i:1043;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(868,155,'_elementor_source_image_hash','338aae767b552dd3d263cf8022adaa534d5684ad'),(869,156,'_wp_attached_file','2024/02/placeholder-320.png'),(870,156,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2024/02/placeholder-320.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"placeholder-320-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"placeholder-320-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"placeholder-320-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"placeholder-320-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(871,156,'_elementor_source_image_hash','b2c85629fa18095757788f2c6740a75ff1d6bfaa'),(872,157,'_wp_attached_file','2024/02/client_3_black.png'),(873,157,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:154;s:6:\"height\";i:80;s:4:\"file\";s:26:\"2024/02/client_3_black.png\";s:8:\"filesize\";i:1877;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"client_3_black-150x80.png\";s:5:\"width\";i:150;s:6:\"height\";i:80;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2862;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(874,157,'_elementor_source_image_hash','7edfed9bd0853d24f4fd3fa5ac495cf45f5a8b25'),(875,158,'_wp_attached_file','2024/02/placeholder-321.png'),(876,158,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2024/02/placeholder-321.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"placeholder-321-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"placeholder-321-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"placeholder-321-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"placeholder-321-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(877,158,'_elementor_source_image_hash','fd90a888c49a82593f9f4b755f1aa5030386bcad'),(878,159,'_wp_attached_file','2024/02/Lifespan-Private-Limited-Licenses-1.png'),(879,159,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:400;s:4:\"file\";s:47:\"2024/02/Lifespan-Private-Limited-Licenses-1.png\";s:8:\"filesize\";i:11668;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Lifespan-Private-Limited-Licenses-1-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14328;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Lifespan-Private-Limited-Licenses-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8501;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(880,160,'_wp_attached_file','2024/02/Lifespan-Private-Limited-Licenses-2.png'),(881,160,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:400;s:4:\"file\";s:47:\"2024/02/Lifespan-Private-Limited-Licenses-2.png\";s:8:\"filesize\";i:10957;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Lifespan-Private-Limited-Licenses-2-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12676;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Lifespan-Private-Limited-Licenses-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6357;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(882,161,'_wp_attached_file','2024/02/Lifespan-Private-Limited-Licenses-3.png'),(883,161,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:400;s:4:\"file\";s:47:\"2024/02/Lifespan-Private-Limited-Licenses-3.png\";s:8:\"filesize\";i:17887;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Lifespan-Private-Limited-Licenses-3-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22284;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Lifespan-Private-Limited-Licenses-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15167;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(884,162,'_wp_attached_file','2024/02/Lifespan-Private-Limited-Licenses-4.png'),(885,162,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:400;s:4:\"file\";s:47:\"2024/02/Lifespan-Private-Limited-Licenses-4.png\";s:8:\"filesize\";i:10875;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Lifespan-Private-Limited-Licenses-4-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12322;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Lifespan-Private-Limited-Licenses-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10359;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(886,163,'_wp_attached_file','2024/02/Lifespan-Private-Limited-Licenses-5.png'),(887,163,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:400;s:4:\"file\";s:47:\"2024/02/Lifespan-Private-Limited-Licenses-5.png\";s:8:\"filesize\";i:10875;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Lifespan-Private-Limited-Licenses-5-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12322;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Lifespan-Private-Limited-Licenses-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10359;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(888,164,'_wp_attached_file','2024/02/Lifespan-Private-Limited-Licenses-6.png'),(889,164,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:400;s:4:\"file\";s:47:\"2024/02/Lifespan-Private-Limited-Licenses-6.png\";s:8:\"filesize\";i:29978;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Lifespan-Private-Limited-Licenses-6-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26923;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Lifespan-Private-Limited-Licenses-6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21499;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(890,165,'_wp_attached_file','2024/02/Lifespan-Private-Limited-Licenses-7.png'),(891,165,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:400;s:4:\"file\";s:47:\"2024/02/Lifespan-Private-Limited-Licenses-7.png\";s:8:\"filesize\";i:20671;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Lifespan-Private-Limited-Licenses-7-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22756;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Lifespan-Private-Limited-Licenses-7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18064;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(892,166,'_wp_attached_file','2024/02/Lifespan-Private-Limited-Licenses-8.png'),(893,166,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:400;s:4:\"file\";s:47:\"2024/02/Lifespan-Private-Limited-Licenses-8.png\";s:8:\"filesize\";i:29071;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Lifespan-Private-Limited-Licenses-8-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34478;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Lifespan-Private-Limited-Licenses-8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25490;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(894,167,'_wp_attached_file','2024/02/Lifespan-Private-Limited-Licenses-9.png'),(895,167,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:400;s:4:\"file\";s:47:\"2024/02/Lifespan-Private-Limited-Licenses-9.png\";s:8:\"filesize\";i:27416;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Lifespan-Private-Limited-Licenses-9-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31679;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Lifespan-Private-Limited-Licenses-9-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22477;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(896,168,'_wp_attached_file','2024/02/Lifespan-Private-Limited-Licenses-10.png'),(897,168,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:400;s:4:\"file\";s:48:\"2024/02/Lifespan-Private-Limited-Licenses-10.png\";s:8:\"filesize\";i:16199;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"Lifespan-Private-Limited-Licenses-10-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18656;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Lifespan-Private-Limited-Licenses-10-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14365;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(898,169,'_wp_attached_file','2024/02/Lifespan-Private-Limited-Licenses-11.png'),(899,169,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:700;s:6:\"height\";i:400;s:4:\"file\";s:48:\"2024/02/Lifespan-Private-Limited-Licenses-11.png\";s:8:\"filesize\";i:23962;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"Lifespan-Private-Limited-Licenses-11-300x171.png\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25816;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Lifespan-Private-Limited-Licenses-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20451;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(900,27,'_edit_lock','1708069218:1'),(901,170,'_wp_page_template','elementor_header_footer'),(902,170,'_elementor_edit_mode','builder'),(903,170,'_elementor_template_type','wp-page'),(904,170,'_elementor_version','3.19.2'),(905,170,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(906,170,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing prioritise customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(907,170,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(908,171,'_wp_page_template','elementor_header_footer'),(909,171,'_elementor_edit_mode','builder'),(910,171,'_elementor_template_type','wp-page'),(911,171,'_elementor_version','3.19.2'),(912,171,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(913,171,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing prioritise customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(914,171,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(915,172,'_wp_page_template','elementor_header_footer'),(916,172,'_elementor_edit_mode','builder'),(917,172,'_elementor_template_type','wp-page'),(918,172,'_elementor_version','3.19.2'),(919,172,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(920,172,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_loop\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f5803c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"xs_client_10\",\"ekit_all_conditions_list\":[{\"_id\":\"429acb7\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"78960e60\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"d1c9867\"}]},\"elements\":[{\"id\":\"7f4303d4\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"c56b219\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"499b7dd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"bf23516\"}]},\"elements\":[{\"id\":\"2bcd860e\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Client logo with gradient box effects\",\"focused_title\":\"\",\"extra_title\":\"\",\"title_align\":\"center\",\"ekit_heading_title\":\"Client Logo with Thick Border Effects 2\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_align\":\"center\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Present your logo carousel slider with the thick border and turn it into gradient color<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"b4903ce\"}],\"ekit_heading_seperator_image\":{\"id\":148,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-316.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(921,172,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(927,173,'_wp_page_template','elementor_header_footer'),(928,173,'_elementor_edit_mode','builder'),(929,173,'_elementor_template_type','wp-page'),(930,173,'_elementor_version','3.19.2'),(931,173,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(932,173,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_loop\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f5803c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"xs_client_10\",\"ekit_all_conditions_list\":[{\"_id\":\"429acb7\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"78960e60\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"d1c9867\"}]},\"elements\":[{\"id\":\"7f4303d4\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"c56b219\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"499b7dd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"bf23516\"}]},\"elements\":[{\"id\":\"2bcd860e\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Client logo with gradient box effects\",\"focused_title\":\"\",\"extra_title\":\"\",\"title_align\":\"center\",\"ekit_heading_title\":\"Client Logo with Thick Border Effects 2\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_align\":\"center\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Present your logo carousel slider with the thick border and turn it into gradient color<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"b4903ce\"}],\"ekit_heading_seperator_image\":{\"id\":148,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-316.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(933,173,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(935,174,'_wp_page_template','elementor_header_footer'),(936,174,'_elementor_edit_mode','builder'),(937,174,'_elementor_template_type','wp-page'),(938,174,'_elementor_version','3.19.2'),(939,174,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(940,174,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_loop\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f5803c8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"_element_id\":\"xs_client_10\",\"ekit_all_conditions_list\":[{\"_id\":\"429acb7\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"78960e60\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"d1c9867\"}]},\"elements\":[{\"id\":\"7f4303d4\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"c56b219\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"499b7dd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"bf23516\"}]},\"elements\":[{\"id\":\"2bcd860e\",\"elType\":\"widget\",\"settings\":{\"sub_title\":\"\",\"title\":\"Client logo with gradient box effects\",\"focused_title\":\"\",\"extra_title\":\"\",\"title_align\":\"center\",\"ekit_heading_title\":\"Client Logo with Thick Border Effects 2\",\"ekit_heading_focused_title\":\"\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_sub_title_border_color_color_stop\":{\"unit\":\"%\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_color_b_stop\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_gradient_angle\":{\"unit\":\"deg\",\"size\":\"180\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_xpos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_tablet\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_ypos_mobile\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width\":{\"unit\":\"%\",\"size\":\"100\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_align\":\"center\",\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Present your logo carousel slider with the thick border and turn it into gradient color<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"b4903ce\"}],\"ekit_heading_seperator_image\":{\"id\":148,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-316.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(941,174,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(943,175,'_wp_page_template','elementor_header_footer'),(944,175,'_elementor_edit_mode','builder'),(945,175,'_elementor_template_type','wp-page'),(946,175,'_elementor_version','3.19.2'),(947,175,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(948,175,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_loop\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(949,175,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(951,176,'_wp_attached_file','2024/02/Untitled-design-3.jpg'),(952,176,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:700;s:4:\"file\";s:29:\"2024/02/Untitled-design-3.jpg\";s:8:\"filesize\";i:14636;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Untitled-design-3-214x300.jpg\";s:5:\"width\";i:214;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4812;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Untitled-design-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:3228;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(953,177,'_wp_attached_file','2024/02/Untitled-design-4.png'),(954,177,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:700;s:4:\"file\";s:29:\"2024/02/Untitled-design-4.png\";s:8:\"filesize\";i:169078;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Untitled-design-4-214x300.png\";s:5:\"width\";i:214;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23112;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Untitled-design-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10211;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(962,179,'_wp_page_template','elementor_header_footer'),(963,179,'_elementor_edit_mode','builder'),(964,179,'_elementor_template_type','wp-page'),(965,179,'_elementor_version','3.19.2'),(966,179,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wp_postmeta` VALUES (967,179,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_loop\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(968,179,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(969,180,'_wp_page_template','elementor_header_footer'),(970,180,'_elementor_edit_mode','builder'),(971,180,'_elementor_template_type','wp-page'),(972,180,'_elementor_version','3.19.2'),(973,180,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(974,180,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_loop\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(975,180,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(976,181,'_wp_page_template','elementor_header_footer'),(977,181,'_elementor_edit_mode','builder'),(978,181,'_elementor_template_type','wp-page'),(979,181,'_elementor_version','3.19.2'),(980,181,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(981,181,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_loop\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(982,181,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(984,182,'_edit_lock','1709726694:1'),(985,182,'_wp_page_template','elementor_header_footer'),(986,182,'_elementor_edit_mode','builder'),(987,182,'_elementor_template_type','wp-page'),(988,182,'_elementor_version','3.19.4'),(999,185,'_wp_page_template','elementor_header_footer'),(1000,185,'_elementor_edit_mode','builder'),(1001,185,'_elementor_template_type','wp-page'),(1002,185,'_elementor_version','3.19.2'),(1003,186,'_wp_page_template','elementor_header_footer'),(1004,186,'_elementor_edit_mode','builder'),(1005,186,'_elementor_template_type','wp-page'),(1006,186,'_elementor_version','3.19.2'),(1007,182,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"_element_id\":\"more\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"manufacturing\"},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07521c8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"hospitals\"},\"elements\":[{\"id\":\"2a140c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"ce71f7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c14c0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"46cc762\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-hospitals.webp\",\"id\":262,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"21ef4c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4726a20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f0e2f32\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN SUPER SPECIALITY HOSPITALS\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.<\\/p><p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"ec7b96b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"d4a934e\"}],\"ekit_section_parallax_multi_items\":[],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"19bf500\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"a717d76\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2fdca7b\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Personalized Care Plans\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"5c26093\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"8545796\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"2839154\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"19bb456\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Total Healthcare Solution\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2a40fda\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"4010dfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"70bae51\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6b7d086\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"State of the Art Technology\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"d6f19ba\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"436fecd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"b10b6d9\"}],\"ekit_section_parallax_multi_items\":[],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5d9636e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"4d2e619\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"bbf22f4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Fast Track Appointments\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"526e99e\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"d8107c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"e2caeb5\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"884b3dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Comprehensive Wellness Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"01439c3\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"2f622ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"56511f3\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e685308\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Community Outreach Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2dd5a79\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f03c8fb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f241d79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"b9c5057\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"414f0a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"93ee7ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharmacies.webp\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7f948f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8865e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ac06980\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"dbed52a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0e6965b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PHARMACIES\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.<\\/p><p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.<\\/p><p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a61fbb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_element_id\":\"sports\"},\"elements\":[{\"id\":\"b6c5d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d6dfba\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"SPORTS ENTREPRENEURSHIP\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"256aa75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-N-Sports.png\",\"id\":277,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"60\",\"bottom\":\"-40\",\"left\":\"60\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"10\",\"bottom\":\"-35\",\"left\":\"10\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e28166\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fe9b1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"35a957c\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":275,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Lions.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"WINNER OF DPCL FIRST SEASON\",\"ekit_image_box_description_text\":\"We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_image_floating_box_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7f81f56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad61bdc\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":276,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Vizag-Warriors.webp\",\"alt\":\"Lifespan Vizag Warriors\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PROUD OWNER OF VIZAG WARRIORS\",\"ekit_image_box_description_text\":\"N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_image_box_image_floating_box_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"3a8209d\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"fe4c54d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"}},\"elements\":[{\"id\":\"c990601\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true},{\"id\":\"374e120\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}]'),(1008,187,'_wp_page_template','elementor_header_footer'),(1009,187,'_elementor_edit_mode','builder'),(1010,187,'_elementor_template_type','wp-page'),(1011,187,'_elementor_version','3.19.2'),(1012,187,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_loop\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1013,182,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1014,188,'_wp_attached_file','2024/02/Narendra-Ram-1.png'),(1015,188,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:26:\"2024/02/Narendra-Ram-1.png\";s:8:\"filesize\";i:8768;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Narendra-Ram-1-300x180.png\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16215;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Narendra-Ram-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7787;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1016,189,'_wp_page_template','elementor_canvas'),(1017,189,'_elementor_edit_mode','builder'),(1018,189,'_elementor_template_type','wp-post'),(1019,189,'_elementor_version','3.19.2'),(1020,189,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1021,189,'_elementor_data','[{\"id\":\"785693fc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"30\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"z_index\":5},\"elements\":[{\"id\":\"52a2e4fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"26b617ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":86,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2eefea4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6368a002\",\"elType\":\"widget\",\"settings\":{\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_nav_menu_logo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#FFFFFF\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Manrope\",\"elementskit_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1499999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.0629999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"700\",\"elementskit_content_typography_text_transform\":\"capitalize\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_item_background_color\":\"#FFFFFF\",\"elementskit_menu_text_color\":\"#122658\",\"elementskit_menu_text_color_tablet\":\"#122658\",\"elementskit_item_color_hover\":\"#0066CC\",\"elementskit_nav_menu_active_text_color\":\"#0066CC\",\"elementskit_style_tab_submenu_indicator_color\":\"#122658\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#122658\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_submenu_item_color\":\"#122658\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_item_text_color_hover\":\"#0066CC\",\"elementskit_panel_submenu_border_border\":\"none\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_submenu_container_width\":\"220px\",\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"8\",\"bottom\":\"10\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_width_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"elementskit_menu_toggle_border_border\":\"none\",\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#0066CC\",\"elementskit_menu_toggle_border_hover_border\":\"none\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_border_border\":\"none\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_menu_close_background_hover_color\":\"#0066CC\",\"elementskit_menu_close_border_hover_border\":\"none\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\",\"elementskit_mobile_menu_logo_width_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=8cd106e\",\"elementskit_menu_text_color\":\"globals\\/colors?id=primary\",\"elementskit_item_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=accent\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=primary\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=primary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_item_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_hover_color\":\"globals\\/colors?id=accent\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"746164ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b9438a5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Connect\",\"align\":\"right\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1022,189,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1024,190,'_wp_page_template','elementor_canvas'),(1025,190,'_elementor_edit_mode','builder'),(1026,190,'_elementor_template_type','wp-post'),(1027,190,'_elementor_version','3.19.2'),(1028,190,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1029,190,'_elementor_data','[{\"id\":\"785693fc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"30\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"z_index\":5},\"elements\":[{\"id\":\"52a2e4fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"26b617ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":86,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo-1-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2eefea4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6368a002\",\"elType\":\"widget\",\"settings\":{\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_nav_menu_logo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#FFFFFF\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Manrope\",\"elementskit_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1499999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.0629999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"700\",\"elementskit_content_typography_text_transform\":\"capitalize\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_item_background_color\":\"#FFFFFF\",\"elementskit_menu_text_color\":\"#122658\",\"elementskit_menu_text_color_tablet\":\"#122658\",\"elementskit_item_color_hover\":\"#0066CC\",\"elementskit_nav_menu_active_text_color\":\"#0066CC\",\"elementskit_style_tab_submenu_indicator_color\":\"#122658\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#122658\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_menu_item_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_menu_item_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"elementskit_submenu_item_color\":\"#122658\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_item_text_color_hover\":\"#0066CC\",\"elementskit_panel_submenu_border_border\":\"none\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_submenu_container_width\":\"220px\",\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"8\",\"bottom\":\"10\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_width_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"elementskit_menu_toggle_border_border\":\"none\",\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#0066CC\",\"elementskit_menu_toggle_border_hover_border\":\"none\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_border_border\":\"none\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_menu_close_background_hover_color\":\"#0066CC\",\"elementskit_menu_close_border_hover_border\":\"none\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\",\"elementskit_mobile_menu_logo_width_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=8cd106e\",\"elementskit_menu_text_color\":\"globals\\/colors?id=primary\",\"elementskit_item_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=accent\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=primary\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=primary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_item_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_hover_color\":\"globals\\/colors?id=accent\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"746164ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b9438a5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Connect\",\"align\":\"right\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1030,190,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1032,191,'_wp_page_template','elementor_canvas'),(1033,191,'_elementor_edit_mode','builder'),(1034,191,'_elementor_template_type','wp-post'),(1035,191,'_elementor_version','3.19.2'),(1036,191,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1037,191,'_elementor_data','[{\"id\":\"785693fc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"30\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"z_index\":5},\"elements\":[{\"id\":\"52a2e4fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"26b617ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":188,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2eefea4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6368a002\",\"elType\":\"widget\",\"settings\":{\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_nav_menu_logo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#FFFFFF\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Manrope\",\"elementskit_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1499999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.0629999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"700\",\"elementskit_content_typography_text_transform\":\"capitalize\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_item_background_color\":\"#FFFFFF\",\"elementskit_menu_text_color\":\"#5B7674\",\"elementskit_menu_text_color_tablet\":\"#5B7674\",\"elementskit_item_color_hover\":\"#474D4C\",\"elementskit_nav_menu_active_text_color\":\"#6A8D8B\",\"elementskit_style_tab_submenu_indicator_color\":\"#5B7674\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#5B7674\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_color\":\"#5B7674\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_item_text_color_hover\":\"#6A8D8B\",\"elementskit_panel_submenu_border_border\":\"none\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_submenu_container_width\":\"220px\",\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"8\",\"bottom\":\"10\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_width_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"elementskit_menu_toggle_border_border\":\"none\",\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#6A8D8B\",\"elementskit_menu_toggle_border_hover_border\":\"none\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_border_border\":\"none\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_menu_close_background_hover_color\":\"#6A8D8B\",\"elementskit_menu_close_border_hover_border\":\"none\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\",\"elementskit_mobile_menu_logo_width_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=8cd106e\",\"elementskit_menu_text_color\":\"globals\\/colors?id=primary\",\"elementskit_item_color_hover\":\"\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=accent\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=primary\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=primary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_item_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_hover_color\":\"globals\\/colors?id=accent\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=accent\"},\"elementskit_nav_sub_menu_active_text_color\":\"#6A8D8B\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"746164ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b9438a5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Connect\",\"align\":\"right\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1038,191,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1048,193,'_wp_page_template','elementor_canvas'),(1049,193,'_elementor_edit_mode','builder'),(1050,193,'_elementor_template_type','wp-post'),(1051,193,'_elementor_version','3.19.2'),(1052,193,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1053,193,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>A Versatile Tycoon, <\\/strong><strong>Proficient in Diverse Realms<\\/strong><\\/p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Philanthropist, Health &amp; Wellness, Sports Entrepreneur.\\u00a0<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Courses\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Foundations of Life Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Goal Setting & Action Planning\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Effective Communication\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Transforming Mindset\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Building Resilience & Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"},{\"text\":\"Launching Your Life Coaching Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3095b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"quick links\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Me\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Courses\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Policies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"54da1ce\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ea4ee33\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024, All rights reserved.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1054,193,'_elementor_page_assets','a:0:{}'),(1055,194,'_wp_page_template','elementor_canvas'),(1056,194,'_elementor_edit_mode','builder'),(1057,194,'_elementor_template_type','wp-post'),(1058,194,'_elementor_version','3.19.2'),(1059,194,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1060,194,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>A Versatile Tycoon, <\\/strong><strong>Proficient in Diverse Realms<\\/strong><\\/p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Philanthropist, Health &amp; Wellness, Sports Entrepreneur.\\u00a0<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Courses\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Foundations of Life Coaching\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Goal Setting & Action Planning\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Effective Communication\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Transforming Mindset\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Building Resilience & Stress Management\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"},{\"text\":\"Launching Your Life Coaching Business\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3095b7b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"quick links\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"About Me\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Courses\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Policies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"54da1ce\"},{\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"},\"_id\":\"ea4ee33\"}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024, All rights reserved.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1061,194,'_elementor_page_assets','a:0:{}'),(1062,195,'_wp_page_template','elementor_canvas'),(1063,195,'_elementor_edit_mode','builder'),(1064,195,'_elementor_template_type','wp-post'),(1065,195,'_elementor_version','3.19.2'),(1066,195,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1067,195,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>A Versatile Tycoon, <\\/strong><strong>Proficient in Diverse Realms<\\/strong><\\/p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.\\u00a0<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Realms\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Manufacturing Nutraceutical\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hospital & Pharmacies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Sports\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Power Politics\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Feel Foundation\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accolades\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Memberships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Recognitions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Awards\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Certificates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\",\"link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/in\\/narendraram\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024, All rights reserved.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1068,195,'_elementor_page_assets','a:0:{}'),(1071,196,'_wp_page_template','elementor_canvas'),(1072,196,'_elementor_edit_mode','builder'),(1073,196,'_elementor_template_type','wp-post'),(1074,196,'_elementor_version','3.19.2'),(1075,196,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1076,196,'_elementor_data','[{\"id\":\"785693fc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"30\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"z_index\":5},\"elements\":[{\"id\":\"52a2e4fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"26b617ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":188,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2eefea4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6368a002\",\"elType\":\"widget\",\"settings\":{\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_nav_menu_logo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#FFFFFF\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Manrope\",\"elementskit_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1499999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.0629999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"700\",\"elementskit_content_typography_text_transform\":\"capitalize\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_item_background_color\":\"#FFFFFF\",\"elementskit_menu_text_color\":\"#5B7674\",\"elementskit_menu_text_color_tablet\":\"#5B7674\",\"elementskit_item_color_hover\":\"#474D4C\",\"elementskit_nav_menu_active_text_color\":\"#6A8D8B\",\"elementskit_style_tab_submenu_indicator_color\":\"#5B7674\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#5B7674\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_color\":\"#5B7674\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_item_text_color_hover\":\"#6A8D8B\",\"elementskit_panel_submenu_border_border\":\"none\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_submenu_container_width\":\"220px\",\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"8\",\"bottom\":\"10\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_width_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"elementskit_menu_toggle_border_border\":\"none\",\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#6A8D8B\",\"elementskit_menu_toggle_border_hover_border\":\"none\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_border_border\":\"none\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_menu_close_background_hover_color\":\"#6A8D8B\",\"elementskit_menu_close_border_hover_border\":\"none\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\",\"elementskit_mobile_menu_logo_width_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=8cd106e\",\"elementskit_menu_text_color\":\"globals\\/colors?id=primary\",\"elementskit_item_color_hover\":\"\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=accent\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=primary\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=primary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_item_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_hover_color\":\"globals\\/colors?id=accent\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=accent\"},\"elementskit_nav_sub_menu_active_text_color\":\"#6A8D8B\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"746164ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b9438a5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Connect\",\"align\":\"right\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1077,196,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1079,197,'_wp_page_template','elementor_canvas'),(1080,197,'_elementor_edit_mode','builder'),(1081,197,'_elementor_template_type','wp-post'),(1082,197,'_elementor_version','3.19.2'),(1083,197,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1084,197,'_elementor_data','[{\"id\":\"785693fc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"30\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"z_index\":5},\"elements\":[{\"id\":\"52a2e4fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"26b617ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":188,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2eefea4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6368a002\",\"elType\":\"widget\",\"settings\":{\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_nav_menu_logo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#FFFFFF\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Manrope\",\"elementskit_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1499999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.0629999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"700\",\"elementskit_content_typography_text_transform\":\"capitalize\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_item_background_color\":\"#FFFFFF\",\"elementskit_menu_text_color\":\"#5B7674\",\"elementskit_menu_text_color_tablet\":\"#5B7674\",\"elementskit_item_color_hover\":\"#474D4C\",\"elementskit_nav_menu_active_text_color\":\"#6A8D8B\",\"elementskit_style_tab_submenu_indicator_color\":\"#5B7674\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#5B7674\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_color\":\"#5B7674\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_item_text_color_hover\":\"#6A8D8B\",\"elementskit_panel_submenu_border_border\":\"none\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_submenu_container_width\":\"220px\",\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"8\",\"bottom\":\"10\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_width_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"elementskit_menu_toggle_border_border\":\"none\",\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#6A8D8B\",\"elementskit_menu_toggle_border_hover_border\":\"none\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_border_border\":\"none\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_menu_close_background_hover_color\":\"#6A8D8B\",\"elementskit_menu_close_border_hover_border\":\"none\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\",\"elementskit_mobile_menu_logo_width_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=8cd106e\",\"elementskit_menu_text_color\":\"globals\\/colors?id=primary\",\"elementskit_item_color_hover\":\"\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=accent\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=primary\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=primary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_item_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_hover_color\":\"globals\\/colors?id=accent\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=accent\"},\"elementskit_nav_sub_menu_active_text_color\":\"#6A8D8B\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"746164ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b9438a5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Connect\",\"align\":\"right\",\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1085,197,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1087,198,'_wp_page_template','elementor_canvas'),(1088,198,'_elementor_edit_mode','builder'),(1089,198,'_elementor_template_type','wp-post'),(1090,198,'_elementor_version','3.19.2'),(1091,198,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1092,198,'_elementor_data','[{\"id\":\"785693fc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":9,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"column_position\":\"stretch\",\"structure\":\"30\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"z_index\":5},\"elements\":[{\"id\":\"52a2e4fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":30,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"26b617ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":188,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2eefea4c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.332999999999998,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6368a002\",\"elType\":\"widget\",\"settings\":{\"elementskit_nav_menu\":\"main-menu\",\"elementskit_main_menu_position\":\"elementskit-menu-po-center\",\"elementskit_nav_menu_logo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"elementskit_menubar_height\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"wrapper_color_mobile_tablet\":\"#FFFFFF\",\"elementskit_content_typography_typography\":\"custom\",\"elementskit_content_typography_font_family\":\"Manrope\",\"elementskit_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1499999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.0629999999999999,\"sizes\":[]},\"elementskit_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.90000000000000002,\"sizes\":[]},\"elementskit_content_typography_font_weight\":\"700\",\"elementskit_content_typography_text_transform\":\"capitalize\",\"elementskit_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_item_background_background\":\"classic\",\"elementskit_item_background_color\":\"#FFFFFF\",\"elementskit_menu_text_color\":\"#5B7674\",\"elementskit_menu_text_color_tablet\":\"#5B7674\",\"elementskit_item_color_hover\":\"#474D4C\",\"elementskit_nav_menu_active_text_color\":\"#6A8D8B\",\"elementskit_style_tab_submenu_indicator_color\":\"#5B7674\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"#5B7674\",\"elementskit_menu_item_typography_typography\":\"custom\",\"elementskit_menu_item_typography_font_family\":\"Poppins\",\"elementskit_menu_item_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"elementskit_menu_item_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"elementskit_menu_item_typography_font_weight\":\"600\",\"elementskit_submenu_item_color\":\"#5B7674\",\"elementskit_menu_item_background_background\":\"classic\",\"elementskit_item_text_color_hover\":\"#6A8D8B\",\"elementskit_panel_submenu_border_border\":\"none\",\"elementskit_submenu_container_background_background\":\"classic\",\"elementskit_submenu_container_background_color\":\"#FFFFFF\",\"elementskit_submenu_container_width\":\"220px\",\"elementskit_menu_toggle_spacing_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"8\",\"bottom\":\"10\",\"left\":\"8\",\"isLinked\":false},\"elementskit_menu_toggle_width_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"elementskit_menu_toggle_border_border\":\"none\",\"elementskit_menu_toggle_icon_color\":\"#FFFFFF\",\"elementskit_menu_toggle_background_hover_background\":\"classic\",\"elementskit_menu_toggle_background_hover_color\":\"#6A8D8B\",\"elementskit_menu_toggle_border_hover_border\":\"none\",\"elementskit_menu_toggle_icon_color_hover\":\"#FFFFFF\",\"elementskit_menu_close_border_border\":\"none\",\"elementskit_menu_close_icon_color\":\"#FFFFFF\",\"elementskit_menu_close_background_hover_background\":\"classic\",\"elementskit_menu_close_background_hover_color\":\"#6A8D8B\",\"elementskit_menu_close_border_hover_border\":\"none\",\"elementskit_menu_close_icon_color_hover\":\"#FFFFFF\",\"elementskit_mobile_menu_logo_width_tablet\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"__globals__\":{\"elementskit_content_typography_typography\":\"globals\\/typography?id=8cd106e\",\"elementskit_menu_text_color\":\"globals\\/colors?id=primary\",\"elementskit_item_color_hover\":\"\",\"elementskit_nav_menu_active_text_color\":\"globals\\/colors?id=accent\",\"elementskit_menu_item_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"elementskit_style_tab_submenu_indicator_color\":\"globals\\/colors?id=primary\",\"elementskit_submenu_container_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_submenu_item_color\":\"globals\\/colors?id=primary\",\"elementskit_item_text_color_hover\":\"globals\\/colors?id=accent\",\"elementskit_item_background_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_toggle_background_hover_color\":\"globals\\/colors?id=accent\",\"wrapper_color_mobile_tablet\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_icon_color_hover\":\"globals\\/colors?id=secondary\",\"elementskit_menu_close_background_hover_color\":\"globals\\/colors?id=accent\",\"elementskit_style_tab_submenu_indicator_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_text_color_tablet\":\"globals\\/colors?id=primary\",\"elementskit_menu_item_background_color\":\"\",\"elementskit_nav_sub_menu_active_text_color\":\"globals\\/colors?id=accent\"},\"elementskit_nav_sub_menu_active_text_color\":\"#6A8D8B\"},\"elements\":[],\"widgetType\":\"ekit-nav-menu\"}],\"isInner\":false},{\"id\":\"746164ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":15,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"4b9438a5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Connect\",\"align\":\"right\",\"hover_animation\":\"grow\",\"link\":{\"url\":\"mailto:cmd@lifespan.industries\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"icon icon-email\",\"library\":\"ekiticons\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1093,198,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1096,199,'_wp_page_template','elementor_header_footer'),(1097,199,'_elementor_edit_mode','builder'),(1098,199,'_elementor_template_type','wp-page'),(1099,199,'_elementor_version','3.19.2'),(1100,199,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1101,199,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_loop\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1102,199,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1103,200,'_wp_page_template','elementor_header_footer'),(1104,200,'_elementor_edit_mode','builder'),(1105,200,'_elementor_template_type','wp-page'),(1106,200,'_elementor_version','3.19.2'),(1107,200,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wp_postmeta` VALUES (1108,200,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_loop\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1109,200,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1110,201,'_wp_page_template','elementor_header_footer'),(1111,201,'_elementor_edit_mode','builder'),(1112,201,'_elementor_template_type','wp-page'),(1113,201,'_elementor_version','3.19.2'),(1114,201,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1115,201,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_loop\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1116,201,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1126,203,'_wp_page_template','elementor_header_footer'),(1127,203,'_elementor_edit_mode','builder'),(1128,203,'_elementor_template_type','wp-page'),(1129,203,'_elementor_version','3.19.2'),(1130,203,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1131,203,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_loop\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1132,203,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1134,204,'_wp_page_template','elementor_header_footer'),(1135,204,'_elementor_edit_mode','builder'),(1136,204,'_elementor_template_type','wp-page'),(1137,204,'_elementor_version','3.19.2'),(1138,204,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1139,204,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_loop\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1140,204,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1142,205,'_wp_page_template','elementor_header_footer'),(1143,205,'_elementor_edit_mode','builder'),(1144,205,'_elementor_template_type','wp-page'),(1145,205,'_elementor_version','3.19.2'),(1146,205,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1147,205,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_loop\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1148,205,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1150,206,'_wp_page_template','elementor_canvas'),(1151,206,'_elementor_edit_mode','builder'),(1152,206,'_elementor_template_type','wp-post'),(1153,206,'_elementor_version','3.19.2'),(1154,206,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1155,206,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>A Versatile Tycoon, <\\/strong><strong>Proficient in Diverse Realms<\\/strong><\\/p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.\\u00a0<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Realms\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Manufacturing Nutraceutical\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hospital & Pharmacies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Sports\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Power Politics\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Feel Foundation\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accolades\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Memberships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Recognitions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Awards\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Certificates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\",\"link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/in\\/narendraram\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024, All rights reserved.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1156,206,'_elementor_page_assets','a:0:{}'),(1157,207,'_wp_page_template','elementor_canvas'),(1158,207,'_elementor_edit_mode','builder'),(1159,207,'_elementor_template_type','wp-post'),(1160,207,'_elementor_version','3.19.2'),(1161,207,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1162,207,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>A Versatile Tycoon, <\\/strong><strong>Proficient in Diverse Realms<\\/strong><\\/p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.\\u00a0<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Realms\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Manufacturing Nutraceutical\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hospital & Pharmacies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Sports\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Power Politics\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Feel Foundation\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accolades\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Memberships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Recognitions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Awards\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Certificates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\",\"link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/in\\/narendraram\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024, All rights reserved.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1163,207,'_elementor_page_assets','a:0:{}'),(1164,208,'_wp_page_template','elementor_canvas'),(1165,208,'_elementor_edit_mode','builder'),(1166,208,'_elementor_template_type','wp-post'),(1167,208,'_elementor_version','3.19.2'),(1168,208,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1169,208,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>A Versatile Tycoon, <\\/strong><strong>Proficient in Diverse Realms<\\/strong><\\/p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.\\u00a0<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Realms\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Manufacturing Nutraceutical\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hospital & Pharmacies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Sports\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Power Politics\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Feel Foundation\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accolades\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Memberships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Recognitions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Awards\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Certificates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\",\"link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/in\\/narendraram\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024, All rights reserved.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1170,208,'_elementor_page_assets','a:0:{}'),(1171,209,'_elementor_edit_mode','builder'),(1172,209,'_elementor_template_type','kit'),(1173,209,'_elementor_version','3.19.2'),(1174,209,'_wp_page_template','default'),(1175,209,'_elementor_page_settings','a:19:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#5B7674\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:18:\"Secondary / Alt BG\";s:5:\"color\";s:7:\"#FFFFFF\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#6A8D8B\";}}s:13:\"custom_colors\";a:5:{i:0;a:3:{s:3:\"_id\";s:7:\"ba7c600\";s:5:\"title\";s:11:\"Transparent\";s:5:\"color\";s:9:\"#02010100\";}i:1;a:3:{s:3:\"_id\";s:7:\"23c5e7b\";s:5:\"title\";s:9:\"Overlay 1\";s:5:\"color\";s:7:\"#CFCFCF\";}i:2;a:3:{s:3:\"_id\";s:7:\"1b0ff90\";s:5:\"title\";s:9:\"Overlay 2\";s:5:\"color\";s:7:\"#A7B9B8\";}i:3;a:3:{s:3:\"_id\";s:7:\"bd3a38d\";s:5:\"title\";s:9:\"Overlay 3\";s:5:\"color\";s:7:\"#F5F5F5\";}i:4;a:3:{s:3:\"_id\";s:7:\"a5a5c45\";s:5:\"title\";s:9:\"Overlay 4\";s:5:\"color\";s:7:\"#FFDF00\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:8:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}}i:3;a:10:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1499999999999999;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:13:{i:0;a:10:{s:3:\"_id\";s:7:\"4f64a1f\";s:5:\"title\";s:15:\"Hero title / H1\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:4.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}i:1;a:10:{s:3:\"_id\";s:7:\"26fe4c0\";s:5:\"title\";s:22:\"Hero title Script / H1\";s:21:\"typography_typography\";s:6:\"custom\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:4.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_family\";s:10:\"Bad Script\";s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}i:2;a:10:{s:3:\"_id\";s:7:\"5ea2e2b\";s:5:\"title\";s:16:\"Extra Large / H2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:3;a:10:{s:3:\"_id\";s:7:\"6cfe23f\";s:5:\"title\";s:23:\"Extra Large Script / H2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:4;a:10:{s:3:\"_id\";s:7:\"601e913\";s:5:\"title\";s:10:\"Large / H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:5;a:10:{s:3:\"_id\";s:7:\"4961eb1\";s:5:\"title\";s:17:\"Large Script / H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:6;a:10:{s:3:\"_id\";s:7:\"66038e2\";s:5:\"title\";s:11:\"Medium / H4\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.375;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.125;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:7;a:10:{s:3:\"_id\";s:7:\"0591894\";s:5:\"title\";s:10:\"Small / H5\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.375;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:8;a:10:{s:3:\"_id\";s:7:\"2187f75\";s:5:\"title\";s:16:\"Extra Small / H6\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.125;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:9;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:3:\"_id\";s:7:\"7e08b7a\";s:5:\"title\";s:11:\"Bold Text 1\";}i:10;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"957e718\";s:5:\"title\";s:11:\"Client Name\";}i:11;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1499999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"8cd106e\";s:5:\"title\";s:8:\"Nav Menu\";}i:12;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:11.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:8;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"70063f2\";s:5:\"title\";s:3:\"404\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1340;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:26:\"body_background_background\";s:7:\"classic\";s:15:\"activeItemIndex\";i:1;s:11:\"__globals__\";a:24:{s:21:\"body_background_color\";s:27:\"globals/colors?id=secondary\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=4f64a1f\";s:8:\"h1_color\";s:25:\"globals/colors?id=primary\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:24:\"h2_typography_typography\";s:29:\"globals/typography?id=5ea2e2b\";s:8:\"h2_color\";s:25:\"globals/colors?id=primary\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=601e913\";s:8:\"h3_color\";s:25:\"globals/colors?id=primary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=66038e2\";s:8:\"h4_color\";s:25:\"globals/colors?id=primary\";s:24:\"h5_typography_typography\";s:29:\"globals/typography?id=0591894\";s:8:\"h5_color\";s:25:\"globals/colors?id=primary\";s:24:\"h6_typography_typography\";s:29:\"globals/typography?id=2187f75\";s:8:\"h6_color\";s:24:\"globals/colors?id=accent\";s:28:\"button_typography_typography\";s:28:\"globals/typography?id=accent\";s:17:\"button_text_color\";s:27:\"globals/colors?id=secondary\";s:23:\"button_background_color\";s:24:\"globals/colors?id=accent\";s:25:\"button_background_color_b\";s:25:\"globals/colors?id=primary\";s:23:\"button_hover_text_color\";s:27:\"globals/colors?id=secondary\";s:29:\"button_hover_background_color\";s:24:\"globals/colors?id=accent\";s:31:\"button_hover_background_color_b\";s:25:\"globals/colors?id=primary\";s:17:\"link_normal_color\";s:25:\"globals/colors?id=1b0ff90\";s:16:\"link_hover_color\";s:27:\"globals/colors?id=secondary\";}s:28:\"button_background_background\";s:8:\"gradient\";s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:34:\"button_hover_background_background\";s:8:\"gradient\";s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:9:\"site_name\";s:12:\"Narendra Ram\";}'),(1176,209,'_elementor_data','[]'),(1177,209,'_elementor_page_assets','a:0:{}'),(1191,211,'_wp_attached_file','2024/02/Narendra-Ram-favicon.png'),(1192,211,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:32:\"2024/02/Narendra-Ram-favicon.png\";s:8:\"filesize\";i:23978;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Narendra-Ram-favicon-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14520;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"Narendra-Ram-favicon-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:64715;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Narendra-Ram-favicon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6142;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Narendra-Ram-favicon-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45188;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1193,212,'_elementor_edit_mode','builder'),(1194,212,'_elementor_template_type','kit'),(1195,212,'_elementor_version','3.19.2'),(1196,212,'_wp_page_template','default'),(1197,212,'_elementor_page_settings','a:22:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#5B7674\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:18:\"Secondary / Alt BG\";s:5:\"color\";s:7:\"#FFFFFF\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#7A7A7A\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#6A8D8B\";}}s:13:\"custom_colors\";a:5:{i:0;a:3:{s:3:\"_id\";s:7:\"ba7c600\";s:5:\"title\";s:11:\"Transparent\";s:5:\"color\";s:9:\"#02010100\";}i:1;a:3:{s:3:\"_id\";s:7:\"23c5e7b\";s:5:\"title\";s:9:\"Overlay 1\";s:5:\"color\";s:7:\"#CFCFCF\";}i:2;a:3:{s:3:\"_id\";s:7:\"1b0ff90\";s:5:\"title\";s:9:\"Overlay 2\";s:5:\"color\";s:7:\"#A7B9B8\";}i:3;a:3:{s:3:\"_id\";s:7:\"bd3a38d\";s:5:\"title\";s:9:\"Overlay 3\";s:5:\"color\";s:7:\"#F5F5F5\";}i:4;a:3:{s:3:\"_id\";s:7:\"a5a5c45\";s:5:\"title\";s:9:\"Overlay 4\";s:5:\"color\";s:7:\"#FFDF00\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:8:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}}i:3;a:10:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1499999999999999;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:13:{i:0;a:10:{s:3:\"_id\";s:7:\"4f64a1f\";s:5:\"title\";s:15:\"Hero title / H1\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:4.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}i:1;a:10:{s:3:\"_id\";s:7:\"26fe4c0\";s:5:\"title\";s:22:\"Hero title Script / H1\";s:21:\"typography_typography\";s:6:\"custom\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:4.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_family\";s:10:\"Bad Script\";s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:3.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}}i:2;a:10:{s:3:\"_id\";s:7:\"5ea2e2b\";s:5:\"title\";s:16:\"Extra Large / H2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:3;a:10:{s:3:\"_id\";s:7:\"6cfe23f\";s:5:\"title\";s:23:\"Extra Large Script / H2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:4;a:10:{s:3:\"_id\";s:7:\"601e913\";s:5:\"title\";s:10:\"Large / H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:5;a:10:{s:3:\"_id\";s:7:\"4961eb1\";s:5:\"title\";s:17:\"Large Script / H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:6;a:10:{s:3:\"_id\";s:7:\"66038e2\";s:5:\"title\";s:11:\"Medium / H4\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.375;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.125;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:7;a:10:{s:3:\"_id\";s:7:\"0591894\";s:5:\"title\";s:10:\"Small / H5\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.375;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:8;a:10:{s:3:\"_id\";s:7:\"2187f75\";s:5:\"title\";s:16:\"Extra Small / H6\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.125;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}}i:9;a:8:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:3:\"_id\";s:7:\"7e08b7a\";s:5:\"title\";s:11:\"Bold Text 1\";}i:10;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Bad Script\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"957e718\";s:5:\"title\";s:11:\"Client Name\";}i:11;a:10:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1499999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.90000000000000002;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1000000000000001;s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"8cd106e\";s:5:\"title\";s:8:\"Nav Menu\";}i:12;a:11:{s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Manrope\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:11.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:8;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:23:\"typography_word_spacing\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:3:\"_id\";s:7:\"70063f2\";s:5:\"title\";s:3:\"404\";}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1340;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:26:\"body_background_background\";s:7:\"classic\";s:15:\"activeItemIndex\";i:1;s:11:\"__globals__\";a:24:{s:21:\"body_background_color\";s:27:\"globals/colors?id=secondary\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=4f64a1f\";s:8:\"h1_color\";s:25:\"globals/colors?id=primary\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:24:\"h2_typography_typography\";s:29:\"globals/typography?id=5ea2e2b\";s:8:\"h2_color\";s:25:\"globals/colors?id=primary\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=601e913\";s:8:\"h3_color\";s:25:\"globals/colors?id=primary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=66038e2\";s:8:\"h4_color\";s:25:\"globals/colors?id=primary\";s:24:\"h5_typography_typography\";s:29:\"globals/typography?id=0591894\";s:8:\"h5_color\";s:25:\"globals/colors?id=primary\";s:24:\"h6_typography_typography\";s:29:\"globals/typography?id=2187f75\";s:8:\"h6_color\";s:24:\"globals/colors?id=accent\";s:28:\"button_typography_typography\";s:28:\"globals/typography?id=accent\";s:17:\"button_text_color\";s:27:\"globals/colors?id=secondary\";s:23:\"button_background_color\";s:24:\"globals/colors?id=accent\";s:25:\"button_background_color_b\";s:25:\"globals/colors?id=primary\";s:23:\"button_hover_text_color\";s:27:\"globals/colors?id=secondary\";s:29:\"button_hover_background_color\";s:24:\"globals/colors?id=accent\";s:31:\"button_hover_background_color_b\";s:25:\"globals/colors?id=primary\";s:17:\"link_normal_color\";s:25:\"globals/colors?id=1b0ff90\";s:16:\"link_hover_color\";s:27:\"globals/colors?id=secondary\";}s:28:\"button_background_background\";s:8:\"gradient\";s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"10\";s:5:\"right\";s:2:\"10\";s:6:\"bottom\";s:2:\"10\";s:4:\"left\";s:2:\"10\";s:8:\"isLinked\";b:1;}s:34:\"button_hover_background_background\";s:8:\"gradient\";s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"15\";s:5:\"right\";s:2:\"30\";s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:8:\"isLinked\";b:0;}s:32:\"colors_enable_styleguide_preview\";s:3:\"yes\";s:9:\"site_name\";s:12:\"Narendra Ram\";s:9:\"site_logo\";a:5:{s:3:\"url\";s:69:\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-1.png\";s:2:\"id\";i:188;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:12:\"site_favicon\";a:5:{s:3:\"url\";s:69:\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-1.png\";s:2:\"id\";i:188;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:6:\"source\";s:7:\"library\";}s:16:\"site_description\";s:48:\"A Versatile Tycoon, Proficient in Diverse Realms\";}'),(1198,212,'_elementor_data','[]'),(1199,212,'_elementor_page_assets','a:0:{}'),(1212,214,'_wp_page_template','elementor_header_footer'),(1213,214,'_elementor_edit_mode','builder'),(1214,214,'_elementor_template_type','wp-page'),(1215,214,'_elementor_version','3.19.2'),(1216,214,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1217,214,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_loop\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1218,214,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1219,215,'_wp_page_template','elementor_header_footer'),(1220,215,'_elementor_edit_mode','builder'),(1221,215,'_elementor_template_type','wp-page'),(1222,215,'_elementor_version','3.19.2'),(1223,215,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wp_postmeta` VALUES (1224,215,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_loop\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1225,215,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1226,216,'_wp_page_template','elementor_header_footer'),(1227,216,'_elementor_edit_mode','builder'),(1228,216,'_elementor_template_type','wp-page'),(1229,216,'_elementor_version','3.19.2'),(1230,216,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1231,216,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1232,216,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1233,217,'_wp_page_template','elementor_header_footer'),(1234,217,'_elementor_edit_mode','builder'),(1235,217,'_elementor_template_type','wp-page'),(1236,217,'_elementor_version','3.19.2'),(1237,217,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1238,217,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1239,217,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1240,218,'_wp_page_template','elementor_header_footer'),(1241,218,'_elementor_edit_mode','builder'),(1242,218,'_elementor_template_type','wp-page'),(1243,218,'_elementor_version','3.19.2'),(1244,218,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1245,218,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1246,218,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1247,219,'_wp_page_template','elementor_header_footer'),(1248,219,'_elementor_edit_mode','builder'),(1249,219,'_elementor_template_type','wp-page'),(1250,219,'_elementor_version','3.19.2'),(1251,219,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1252,219,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1253,219,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1254,220,'_wp_page_template','elementor_header_footer'),(1255,220,'_elementor_edit_mode','builder'),(1256,220,'_elementor_template_type','wp-page'),(1257,220,'_elementor_version','3.19.2'),(1258,220,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1259,220,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1260,220,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1261,221,'_wp_page_template','elementor_header_footer'),(1262,221,'_elementor_edit_mode','builder'),(1263,221,'_elementor_template_type','wp-page'),(1264,221,'_elementor_version','3.19.2'),(1265,221,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wp_postmeta` VALUES (1266,221,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1267,221,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1268,222,'_wp_page_template','elementor_header_footer'),(1269,222,'_elementor_edit_mode','builder'),(1270,222,'_elementor_template_type','wp-page'),(1271,222,'_elementor_version','3.19.2'),(1272,222,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1273,222,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\",\"_element_id\":\"more\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1274,222,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1275,223,'_wp_page_template','elementor_header_footer'),(1276,223,'_elementor_edit_mode','builder'),(1277,223,'_elementor_template_type','wp-page'),(1278,223,'_elementor_version','3.19.2'),(1279,223,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1280,223,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\",\"_element_id\":\"more\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1281,223,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1282,224,'_wp_page_template','elementor_header_footer'),(1283,224,'_elementor_edit_mode','builder'),(1284,224,'_elementor_template_type','wp-page'),(1285,224,'_elementor_version','3.19.2'),(1286,224,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1287,224,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\",\"_element_id\":\"more\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1288,224,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1289,225,'_wp_page_template','elementor_header_footer'),(1290,225,'_elementor_edit_mode','builder'),(1291,225,'_elementor_template_type','wp-page'),(1292,225,'_elementor_version','3.19.2'),(1293,225,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1294,225,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"#more\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\",\"_element_id\":\"more\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1295,225,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1303,227,'_wp_page_template','elementor_header_footer'),(1304,227,'_elementor_edit_mode','builder'),(1305,227,'_elementor_template_type','wp-page'),(1306,227,'_elementor_version','3.19.2'),(1307,227,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_loop\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1308,227,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1309,228,'_wp_page_template','elementor_header_footer'),(1310,228,'_elementor_edit_mode','builder'),(1311,228,'_elementor_template_type','wp-page'),(1312,228,'_elementor_version','3.19.2'),(1313,228,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_loop\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1314,228,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1315,229,'_wp_page_template','elementor_header_footer'),(1316,229,'_elementor_edit_mode','builder'),(1317,229,'_elementor_template_type','wp-page'),(1318,229,'_elementor_version','3.19.2'),(1319,229,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1320,229,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1321,230,'_wp_page_template','elementor_header_footer'),(1322,230,'_elementor_edit_mode','builder'),(1323,230,'_elementor_template_type','wp-page'),(1324,230,'_elementor_version','3.19.2'),(1325,230,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1326,230,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1327,231,'_wp_page_template','elementor_header_footer'),(1328,231,'_elementor_edit_mode','builder'),(1329,231,'_elementor_template_type','wp-page'),(1330,231,'_elementor_version','3.19.2');
INSERT INTO `wp_postmeta` VALUES (1331,231,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1332,231,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1333,232,'_wp_page_template','elementor_header_footer'),(1334,232,'_elementor_edit_mode','builder'),(1335,232,'_elementor_template_type','wp-page'),(1336,232,'_elementor_version','3.19.2'),(1337,232,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1338,232,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1339,233,'_wp_page_template','elementor_header_footer'),(1340,233,'_elementor_edit_mode','builder'),(1341,233,'_elementor_template_type','wp-page'),(1342,233,'_elementor_version','3.19.2'),(1343,233,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1344,233,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1345,234,'_wp_page_template','elementor_header_footer'),(1346,234,'_elementor_edit_mode','builder'),(1347,234,'_elementor_template_type','wp-page'),(1348,234,'_elementor_version','3.19.2'),(1349,234,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1350,234,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1351,235,'_wp_page_template','elementor_header_footer'),(1352,235,'_elementor_edit_mode','builder'),(1353,235,'_elementor_template_type','wp-page'),(1354,235,'_elementor_version','3.19.2'),(1355,235,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1356,235,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1358,236,'_wp_page_template','elementor_header_footer'),(1359,236,'_elementor_edit_mode','builder'),(1360,236,'_elementor_template_type','wp-page'),(1361,236,'_elementor_version','3.19.2'),(1362,236,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1363,236,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1365,237,'_wp_page_template','elementor_header_footer'),(1366,237,'_elementor_edit_mode','builder'),(1367,237,'_elementor_template_type','wp-page'),(1368,237,'_elementor_version','3.19.2'),(1369,237,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1370,237,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1372,238,'_wp_page_template','elementor_header_footer'),(1373,238,'_elementor_edit_mode','builder'),(1374,238,'_elementor_template_type','wp-page'),(1375,238,'_elementor_version','3.19.2'),(1376,238,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"_element_id\":\"more\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1377,238,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1380,239,'_wp_page_template','elementor_header_footer'),(1381,239,'_elementor_edit_mode','builder'),(1382,239,'_elementor_template_type','wp-page'),(1383,239,'_elementor_version','3.19.2'),(1384,239,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"_element_id\":\"more\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1385,239,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1387,240,'_wp_page_template','elementor_header_footer'),(1388,240,'_elementor_edit_mode','builder'),(1389,240,'_elementor_template_type','wp-page'),(1390,240,'_elementor_version','3.19.2'),(1391,240,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"_element_id\":\"more\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1392,240,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1394,241,'_wp_page_template','elementor_header_footer'),(1395,241,'_elementor_edit_mode','builder'),(1396,241,'_elementor_template_type','wp-page'),(1397,241,'_elementor_version','3.19.2'),(1398,241,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"_element_id\":\"more\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1399,241,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1408,243,'_wp_page_template','elementor_canvas'),(1409,243,'_elementor_edit_mode','builder'),(1410,243,'_elementor_template_type','wp-post'),(1411,243,'_elementor_version','3.19.2'),(1412,243,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1413,243,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>A Versatile Tycoon, <\\/strong><strong>Proficient in Diverse Realms<\\/strong><\\/p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.\\u00a0<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Realms\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Manufacturing Nutraceutical\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hospital & Pharmacies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Sports\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Power Politics\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Feel Foundation\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accolades\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Memberships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Recognitions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Awards\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Certificates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\",\"link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/in\\/narendraram\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024, All rights reserved.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1414,243,'_elementor_page_assets','a:0:{}'),(1416,244,'_wp_page_template','elementor_canvas'),(1417,244,'_elementor_edit_mode','builder'),(1418,244,'_elementor_template_type','wp-post'),(1419,244,'_elementor_version','3.19.2'),(1420,244,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1421,244,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>A Versatile Tycoon, <\\/strong><strong>Proficient in Diverse Realms<\\/strong><\\/p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.\\u00a0<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Realms\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Manufacturing Nutraceutical\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hospital & Pharmacies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Sports\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Power Politics\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Feel Foundation\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accolades\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Memberships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Recognitions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Awards\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Certificates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\",\"link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/in\\/narendraram\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024, All rights reserved.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1422,244,'_elementor_page_assets','a:0:{}'),(1424,245,'_wp_page_template','elementor_canvas'),(1425,245,'_elementor_edit_mode','builder'),(1426,245,'_elementor_template_type','wp-post'),(1427,245,'_elementor_version','3.19.2'),(1428,245,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1429,245,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>A Versatile Tycoon, <\\/strong><strong>Proficient in Diverse Realms<\\/strong><\\/p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.\\u00a0<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Realms\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Manufacturing Nutraceutical\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hospital & Pharmacies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Sports\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Power Politics\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Feel Foundation\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accolades\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Memberships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Recognitions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Awards\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Certificates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\",\"link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/in\\/narendraram\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024, All rights reserved.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1430,245,'_elementor_page_assets','a:0:{}'),(1432,246,'_wp_page_template','elementor_header_footer'),(1433,246,'_elementor_edit_mode','builder'),(1434,246,'_elementor_template_type','wp-page'),(1435,246,'_elementor_version','3.19.2'),(1436,246,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"_element_id\":\"more\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1437,246,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1439,247,'_wp_page_template','elementor_header_footer'),(1440,247,'_elementor_edit_mode','builder'),(1441,247,'_elementor_template_type','wp-page'),(1442,247,'_elementor_version','3.19.2'),(1443,247,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"_element_id\":\"more\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1444,247,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1446,248,'_wp_page_template','elementor_header_footer'),(1447,248,'_elementor_edit_mode','builder'),(1448,248,'_elementor_template_type','wp-page'),(1449,248,'_elementor_version','3.19.2'),(1450,248,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"_element_id\":\"more\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"manufacturing\"},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1451,248,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1453,249,'_wp_page_template','elementor_canvas'),(1454,249,'_elementor_edit_mode','builder'),(1455,249,'_elementor_template_type','wp-post'),(1456,249,'_elementor_version','3.19.2'),(1457,249,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1458,249,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>A Versatile Tycoon, <\\/strong><strong>Proficient in Diverse Realms<\\/strong><\\/p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.\\u00a0<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Realms\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Manufacturing Nutraceutical\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hospital & Pharmacies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Sports\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Power Politics\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Feel Foundation\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accolades\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Memberships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Recognitions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Awards\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Certificates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\",\"link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/in\\/narendraram\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024, All rights reserved.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1459,249,'_elementor_page_assets','a:0:{}'),(1460,250,'_wp_page_template','elementor_canvas'),(1461,250,'_elementor_edit_mode','builder'),(1462,250,'_elementor_template_type','wp-post'),(1463,250,'_elementor_version','3.19.2'),(1464,250,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1465,250,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>A Versatile Tycoon, <\\/strong><strong>Proficient in Diverse Realms<\\/strong><\\/p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.\\u00a0<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Realms\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Manufacturing Nutraceutical\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hospital & Pharmacies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Sports\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Power Politics\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Feel Foundation\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accolades\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Memberships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Recognitions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Awards\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Certificates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\",\"link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/in\\/narendraram\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024, All rights reserved.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1466,250,'_elementor_page_assets','a:0:{}'),(1467,251,'_wp_page_template','elementor_canvas'),(1468,251,'_elementor_edit_mode','builder'),(1469,251,'_elementor_template_type','wp-post'),(1470,251,'_elementor_version','3.19.2'),(1471,251,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1472,251,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>A Versatile Tycoon, <\\/strong><strong>Proficient in Diverse Realms<\\/strong><\\/p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.\\u00a0<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Realms\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Manufacturing Nutraceutical\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#manufacturing\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hospital & Pharmacies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Sports\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Power Politics\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Feel Foundation\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accolades\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Memberships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Recognitions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Awards\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Certificates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\",\"link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/in\\/narendraram\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024, All rights reserved.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1473,251,'_elementor_page_assets','a:0:{}'),(1476,252,'_wp_page_template','elementor_canvas'),(1477,252,'_elementor_edit_mode','builder'),(1478,252,'_elementor_template_type','wp-post'),(1479,252,'_elementor_version','3.19.2'),(1480,252,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1481,252,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>A Versatile Tycoon, <\\/strong><strong>Proficient in Diverse Realms<\\/strong><\\/p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.\\u00a0<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Realms\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Manufacturing Nutraceutical\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#manufacturing\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hospital & Pharmacies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Sports\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Power Politics\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Feel Foundation\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accolades\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Memberships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Recognitions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Awards\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Certificates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\",\"link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/in\\/narendraram\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024, All rights reserved.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1482,252,'_elementor_page_assets','a:0:{}'),(1484,253,'_wp_page_template','elementor_canvas'),(1485,253,'_elementor_edit_mode','builder'),(1486,253,'_elementor_template_type','wp-post'),(1487,253,'_elementor_version','3.19.2'),(1488,253,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1489,253,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>A Versatile Tycoon, <\\/strong><strong>Proficient in Diverse Realms<\\/strong><\\/p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.\\u00a0<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Realms\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Manufacturing Nutraceutical\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#manufacturing\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hospital & Pharmacies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Sports\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Power Politics\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Feel Foundation\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accolades\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Memberships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Recognitions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Awards\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Certificates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"99ba018\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\",\"link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/in\\/narendraram\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024, All rights reserved.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1490,253,'_elementor_page_assets','a:0:{}'),(1492,254,'_wp_page_template','elementor_canvas'),(1493,254,'_elementor_edit_mode','builder'),(1494,254,'_elementor_template_type','wp-post'),(1495,254,'_elementor_version','3.19.2'),(1496,254,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1497,254,'_elementor_data','[{\"id\":\"6001e8dc\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":55,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":80,\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\",\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"58c1b76b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1218e414\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\"},\"elements\":[{\"id\":\"2903af9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"2cb5cc62\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":82,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Narendra-Ram-Logo.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":125.083},\"_flex_size\":\"none\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":300}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49655d63\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>A Versatile Tycoon, <\\/strong><strong>Proficient in Diverse Realms<\\/strong><\\/p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.\\u00a0<\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"54bc32a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3e8bf398\",\"elType\":\"widget\",\"settings\":{\"title\":\"Business Realms\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bdbf8bc\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"dc0832a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Manufacturing Nutraceutical\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\",\"link\":{\"url\":\"#manufacturing\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Hospital & Pharmacies\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Sports\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Power Politics\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"99ba018\"},{\"text\":\"Feel Foundation\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9e893c7\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5f6eac25\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":10,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"5\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"22c568c2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Accolades\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1609996\",\"elType\":\"widget\",\"settings\":{\"style\":\"curved\",\"width\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"42ca0941\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Memberships\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"74134c7\"},{\"text\":\"Recognitions\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"63688fa\"},{\"text\":\"Awards\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"3ced186\"},{\"text\":\"Certificates\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"99ba018\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_typography_typography\":\"globals\\/typography?id=accent\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b468d81\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":15,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"3b504272\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe now\",\"header_size\":\"h5\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cdd5066\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"370\"},\"elements\":[],\"widgetType\":\"rform\"},{\"id\":\"48def45b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-linkedin\",\"library\":\"fa-brands\"},\"_id\":\"25eaad7\",\"link\":{\"url\":\"https:\\/\\/www.linkedin.com\\/in\\/narendraram\\/\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"align\":\"left\",\"icon_color\":\"custom\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"icon_secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=1b0ff90\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"52ec62aa\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"565f285a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"67808210\",\"elType\":\"widget\",\"settings\":{\"title\":\"Copyright \\u00a9 2024, All rights reserved.\",\"header_size\":\"p\",\"align_tablet\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3cc14d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7cf38117\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Term of use\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"611bb62\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"7c87420\"},{\"text\":\"Cookie Policy\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"5e47b98\"}],\"icon_align\":\"right\",\"icon_align_tablet\":\"center\",\"divider\":\"yes\",\"divider_height\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"__globals__\":{\"divider_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1498,254,'_elementor_page_assets','a:0:{}'),(1501,98,'_wp_old_date','2024-02-14'),(1502,99,'_wp_old_date','2024-02-14'),(1503,100,'_wp_old_date','2024-02-14'),(1504,101,'_wp_old_date','2024-02-14'),(1505,102,'_wp_old_date','2024-02-14'),(1506,103,'_wp_old_date','2024-02-14'),(1507,104,'_wp_old_date','2024-02-14'),(1508,105,'_wp_old_date','2024-02-14'),(1509,106,'_wp_old_date','2024-02-14'),(1514,255,'_wp_attached_file','2024/03/placeholder-282.png'),(1515,255,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2024/03/placeholder-282.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"placeholder-282-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"placeholder-282-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"placeholder-282-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"placeholder-282-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1516,255,'_elementor_source_image_hash','876ed3c83b0c0a3d3b784213ec979a70927ce946'),(1517,256,'_wp_attached_file','2024/03/info-box-icon-21.png'),(1518,256,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:54;s:6:\"height\";i:50;s:4:\"file\";s:28:\"2024/03/info-box-icon-21.png\";s:8:\"filesize\";i:1050;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1519,256,'_elementor_source_image_hash','ed91d2ce683170bc639199e1a95482b59b7c12f5'),(1520,257,'_wp_attached_file','2024/03/placeholder-240.png'),(1521,257,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2024/03/placeholder-240.png\";s:8:\"filesize\";i:3059;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"placeholder-240-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4812;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"placeholder-240-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20196;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"placeholder-240-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3377;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"placeholder-240-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15074;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1522,257,'_elementor_source_image_hash','006f1ac70f942e9ae031811a949685be55ad13dc'),(1530,259,'_wp_page_template','elementor_header_footer'),(1531,259,'_elementor_edit_mode','builder'),(1532,259,'_elementor_template_type','wp-page'),(1533,259,'_elementor_version','3.19.2'),(1534,259,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1535,259,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"#more\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\",\"_element_id\":\"more\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1536,259,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1537,260,'_wp_page_template','elementor_header_footer'),(1538,260,'_elementor_edit_mode','builder'),(1539,260,'_elementor_template_type','wp-page'),(1540,260,'_elementor_version','3.19.2'),(1541,260,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wp_postmeta` VALUES (1542,260,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"#more\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\",\"_element_id\":\"more\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1543,260,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1544,261,'_wp_page_template','elementor_header_footer'),(1545,261,'_elementor_edit_mode','builder'),(1546,261,'_elementor_template_type','wp-page'),(1547,261,'_elementor_version','3.19.2'),(1548,261,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1549,261,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"#more\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\",\"_element_id\":\"more\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2b0a2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"286366c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"7cefd5d\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"beb22c8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN SUPER SPECIALITY HOSPITALS\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.<\\/p><p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"288e8bfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"d4a934e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5a69d221\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"a717d76\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"429e4088\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Personalized Care Plans\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"5c26093\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"3c88ab55\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"2839154\"}]},\"elements\":[{\"id\":\"18381487\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Total Healthcare Solution\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2a40fda\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"a3a5135\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"70bae51\"}]},\"elements\":[{\"id\":\"44901a1b\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"State of the Art Technology\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"d6f19ba\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7fa99e5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"b10b6d9\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"3ad4c051\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"4d2e619\"}]},\"elements\":[{\"id\":\"7ae0d87d\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Fast Track Appointments\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"526e99e\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"6282edc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"e2caeb5\"}]},\"elements\":[{\"id\":\"3abfdf80\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Comprehensive Wellness Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"01439c3\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"214cc47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"56511f3\"}]},\"elements\":[{\"id\":\"680f838c\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Community Outreach Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2dd5a79\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1550,261,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1551,262,'_wp_attached_file','2024/03/Lifespan-hospitals.webp'),(1552,262,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:536;s:4:\"file\";s:31:\"2024/03/Lifespan-hospitals.webp\";s:8:\"filesize\";i:64982;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"Lifespan-hospitals-300x126.webp\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9534;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"Lifespan-hospitals-1024x429.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:429;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:59116;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Lifespan-hospitals-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5576;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"Lifespan-hospitals-768x322.webp\";s:5:\"width\";i:768;s:6:\"height\";i:322;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:38898;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1560,264,'_wp_attached_file','2024/03/Lifespan-Pharmacies.webp'),(1561,264,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:32:\"2024/03/Lifespan-Pharmacies.webp\";s:8:\"filesize\";i:30136;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Lifespan-Pharmacies-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7952;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"Lifespan-Pharmacies-1024x683.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:31982;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Lifespan-Pharmacies-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3488;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Lifespan-Pharmacies-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:23064;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1562,265,'_wp_attached_file','2024/03/Lifespan-Pharamcies-logo.png'),(1563,265,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:36:\"2024/03/Lifespan-Pharamcies-logo.png\";s:8:\"filesize\";i:43437;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Lifespan-Pharamcies-logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20657;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"Lifespan-Pharamcies-logo-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104285;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Lifespan-Pharamcies-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8124;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"Lifespan-Pharamcies-logo-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69721;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1564,266,'_wp_page_template','elementor_header_footer'),(1565,266,'_elementor_edit_mode','builder'),(1566,266,'_elementor_template_type','wp-page'),(1567,266,'_elementor_version','3.19.4'),(1568,266,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1569,266,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"#more\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\",\"_element_id\":\"more\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2b0a2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"286366c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"7cefd5d\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"beb22c8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN SUPER SPECIALITY HOSPITALS\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.<\\/p><p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"288e8bfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"d4a934e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5a69d221\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"a717d76\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"429e4088\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Personalized Care Plans\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"5c26093\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"3c88ab55\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"2839154\"}]},\"elements\":[{\"id\":\"18381487\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Total Healthcare Solution\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2a40fda\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"a3a5135\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"70bae51\"}]},\"elements\":[{\"id\":\"44901a1b\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"State of the Art Technology\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"d6f19ba\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7fa99e5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"b10b6d9\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"3ad4c051\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"4d2e619\"}]},\"elements\":[{\"id\":\"7ae0d87d\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Fast Track Appointments\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"526e99e\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"6282edc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"e2caeb5\"}]},\"elements\":[{\"id\":\"3abfdf80\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Comprehensive Wellness Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"01439c3\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"214cc47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"56511f3\"}]},\"elements\":[{\"id\":\"680f838c\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Community Outreach Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2dd5a79\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1570,266,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1571,267,'_wp_page_template','elementor_header_footer'),(1572,267,'_elementor_edit_mode','builder'),(1573,267,'_elementor_template_type','wp-page'),(1574,267,'_elementor_version','3.19.4'),(1575,267,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1576,267,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"#more\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\",\"_element_id\":\"more\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5d2b0a2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"286366c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"7cefd5d\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"beb22c8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN SUPER SPECIALITY HOSPITALS\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.<\\/p><p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"288e8bfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"d4a934e\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"5a69d221\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"a717d76\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"429e4088\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Personalized Care Plans\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"5c26093\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"3c88ab55\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"2839154\"}]},\"elements\":[{\"id\":\"18381487\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Total Healthcare Solution\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2a40fda\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"a3a5135\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"70bae51\"}]},\"elements\":[{\"id\":\"44901a1b\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"State of the Art Technology\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"d6f19ba\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7fa99e5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"b10b6d9\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"3ad4c051\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"4d2e619\"}]},\"elements\":[{\"id\":\"7ae0d87d\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Fast Track Appointments\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"526e99e\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"6282edc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"e2caeb5\"}]},\"elements\":[{\"id\":\"3abfdf80\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Comprehensive Wellness Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"01439c3\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"214cc47f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"56511f3\"}]},\"elements\":[{\"id\":\"680f838c\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Community Outreach Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2dd5a79\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1577,267,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1578,268,'_wp_page_template','elementor_header_footer'),(1579,268,'_elementor_edit_mode','builder'),(1580,268,'_elementor_template_type','wp-page'),(1581,268,'_elementor_version','3.19.4'),(1582,268,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1583,268,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"#more\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\",\"_element_id\":\"more\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\",\"ekit_client_logo_slidetosho_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e72d132\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d33ec7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"c6789f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e777d8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"d6c1937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-hospitals.webp\",\"id\":262,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"593703e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79fbe98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"180909c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN SUPER SPECIALITY HOSPITALS\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.<\\/p><p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"0ca2752\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"d4a934e\"}],\"ekit_section_parallax_multi_items\":[],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a6be3b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"a717d76\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca294ac\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Personalized Care Plans\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"5c26093\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"bf7bc5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"2839154\"}]},\"elements\":[{\"id\":\"57a3da7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Total Healthcare Solution\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2a40fda\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"12bcd75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"70bae51\"}]},\"elements\":[{\"id\":\"0286708\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"State of the Art Technology\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"d6f19ba\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"767fb0c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"b10b6d9\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"221144a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"4d2e619\"}]},\"elements\":[{\"id\":\"2194c0e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Fast Track Appointments\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"526e99e\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"460ade8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"e2caeb5\"}]},\"elements\":[{\"id\":\"46a0dc4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Comprehensive Wellness Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"01439c3\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"46e3d08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"56511f3\"}]},\"elements\":[{\"id\":\"5356aaa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Community Outreach Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2dd5a79\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3986c25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb814f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"411d076\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"67f90dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fa6c299\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharmacies.webp\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f18e962\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"826c876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d2b0a2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"286366c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"beb22c8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PHARMACIES\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.<\\/p><p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.<\\/p><p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1584,268,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1592,270,'_wp_page_template','elementor_header_footer'),(1593,270,'_elementor_edit_mode','builder'),(1594,270,'_elementor_template_type','wp-page'),(1595,270,'_elementor_version','3.19.4'),(1596,270,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wp_postmeta` VALUES (1597,270,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"#more\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\",\"_element_id\":\"more\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\",\"ekit_client_logo_slidetosho_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e72d132\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d33ec7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"c6789f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e777d8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"d6c1937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-hospitals.webp\",\"id\":262,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"593703e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79fbe98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"180909c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN SUPER SPECIALITY HOSPITALS\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.<\\/p><p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"0ca2752\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"d4a934e\"}],\"ekit_section_parallax_multi_items\":[],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a6be3b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"a717d76\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca294ac\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Personalized Care Plans\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"5c26093\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"bf7bc5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"2839154\"}]},\"elements\":[{\"id\":\"57a3da7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Total Healthcare Solution\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2a40fda\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"12bcd75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"70bae51\"}]},\"elements\":[{\"id\":\"0286708\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"State of the Art Technology\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"d6f19ba\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"767fb0c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"b10b6d9\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"221144a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"4d2e619\"}]},\"elements\":[{\"id\":\"2194c0e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Fast Track Appointments\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"526e99e\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"460ade8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"e2caeb5\"}]},\"elements\":[{\"id\":\"46a0dc4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Comprehensive Wellness Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"01439c3\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"46e3d08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"56511f3\"}]},\"elements\":[{\"id\":\"5356aaa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Community Outreach Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2dd5a79\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3986c25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb814f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"411d076\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"67f90dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fa6c299\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharmacies.webp\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f18e962\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"826c876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d2b0a2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"286366c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"beb22c8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PHARMACIES\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.<\\/p><p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.<\\/p><p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1598,270,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1599,271,'_wp_page_template','elementor_header_footer'),(1600,271,'_elementor_edit_mode','builder'),(1601,271,'_elementor_template_type','wp-page'),(1602,271,'_elementor_version','3.19.4'),(1603,271,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1604,271,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"#more\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\",\"_element_id\":\"more\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\",\"ekit_client_logo_slidetosho_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e72d132\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d33ec7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"c6789f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e777d8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"d6c1937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-hospitals.webp\",\"id\":262,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"593703e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79fbe98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"180909c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN SUPER SPECIALITY HOSPITALS\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.<\\/p><p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"0ca2752\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"d4a934e\"}],\"ekit_section_parallax_multi_items\":[],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a6be3b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"a717d76\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca294ac\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Personalized Care Plans\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"5c26093\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"bf7bc5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"2839154\"}]},\"elements\":[{\"id\":\"57a3da7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Total Healthcare Solution\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2a40fda\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"12bcd75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"70bae51\"}]},\"elements\":[{\"id\":\"0286708\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"State of the Art Technology\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"d6f19ba\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"767fb0c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"b10b6d9\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"221144a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"4d2e619\"}]},\"elements\":[{\"id\":\"2194c0e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Fast Track Appointments\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"526e99e\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"460ade8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"e2caeb5\"}]},\"elements\":[{\"id\":\"46a0dc4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Comprehensive Wellness Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"01439c3\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"46e3d08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"56511f3\"}]},\"elements\":[{\"id\":\"5356aaa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Community Outreach Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2dd5a79\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3986c25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb814f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"411d076\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"67f90dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fa6c299\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharmacies.webp\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f18e962\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"826c876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d2b0a2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"286366c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"beb22c8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PHARMACIES\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.<\\/p><p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.<\\/p><p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1605,271,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1606,272,'_wp_page_template','elementor_header_footer'),(1607,272,'_elementor_edit_mode','builder'),(1608,272,'_elementor_template_type','wp-page'),(1609,272,'_elementor_version','3.19.4'),(1610,272,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1611,272,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"#more\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\",\"_element_id\":\"more\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#5B7674\",\"secondary_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Manrope\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_weight\":\"800\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"_background_color\":\"#6A8D8B\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\",\"ekit_client_logo_slidetosho_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e72d132\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d33ec7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"c6789f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e777d8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"d6c1937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-hospitals.webp\",\"id\":262,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"593703e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79fbe98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"180909c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN SUPER SPECIALITY HOSPITALS\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.<\\/p><p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"0ca2752\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"d4a934e\"}],\"ekit_section_parallax_multi_items\":[],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a6be3b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"a717d76\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca294ac\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Personalized Care Plans\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"5c26093\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"bf7bc5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"2839154\"}]},\"elements\":[{\"id\":\"57a3da7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Total Healthcare Solution\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2a40fda\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"12bcd75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"70bae51\"}]},\"elements\":[{\"id\":\"0286708\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"State of the Art Technology\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"d6f19ba\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"767fb0c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"b10b6d9\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"221144a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"4d2e619\"}]},\"elements\":[{\"id\":\"2194c0e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Fast Track Appointments\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"526e99e\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"460ade8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"e2caeb5\"}]},\"elements\":[{\"id\":\"46a0dc4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Comprehensive Wellness Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"01439c3\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"46e3d08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"56511f3\"}]},\"elements\":[{\"id\":\"5356aaa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Community Outreach Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2dd5a79\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3986c25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb814f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"411d076\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"67f90dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fa6c299\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharmacies.webp\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f18e962\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"826c876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d2b0a2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"286366c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"beb22c8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PHARMACIES\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.<\\/p><p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.<\\/p><p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"811f29c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2749b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"ca658f1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"SPORTS ENTREPRENEURSHIP\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"316e301\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"03e91c3\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"0d5dfde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"}},\"elements\":[{\"id\":\"f199a90\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true},{\"id\":\"c670c67\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"32366ac\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d238eaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"d609b46\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"09a89e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"e5acff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"61e17b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"b2b16e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"e30f5a6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"ffe1435\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"df141b8\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"b47b3d2\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\",\"ekit_client_logo_slidetosho_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d4c2b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"}},\"elements\":[{\"id\":\"4e53857\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true},{\"id\":\"8126d90\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1612,272,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1613,273,'_wp_attached_file','2024/03/Lifespan-Phramacy-logo.png'),(1614,273,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:34:\"2024/03/Lifespan-Phramacy-logo.png\";s:8:\"filesize\";i:58831;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Lifespan-Phramacy-logo-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27616;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"Lifespan-Phramacy-logo-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:142101;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Lifespan-Phramacy-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11380;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"Lifespan-Phramacy-logo-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94337;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1622,275,'_wp_attached_file','2024/03/Lifespan-Lions.webp'),(1623,275,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2024/03/Lifespan-Lions.webp\";s:8:\"filesize\";i:83478;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Lifespan-Lions-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13904;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"Lifespan-Lions-1024x683.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:85156;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Lifespan-Lions-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7216;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Lifespan-Lions-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:56828;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1624,276,'_wp_attached_file','2024/03/Lifespan-Vizag-Warriors.webp'),(1625,276,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:36:\"2024/03/Lifespan-Vizag-Warriors.webp\";s:8:\"filesize\";i:60170;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Lifespan-Vizag-Warriors-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12238;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"Lifespan-Vizag-Warriors-1024x683.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:64804;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Lifespan-Vizag-Warriors-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5614;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"Lifespan-Vizag-Warriors-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:45434;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1626,276,'_wp_attachment_image_alt',''),(1627,277,'_wp_attached_file','2024/03/Lifespan-N-Sports.png'),(1628,277,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:500;s:4:\"file\";s:29:\"2024/03/Lifespan-N-Sports.png\";s:8:\"filesize\";i:59056;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Lifespan-N-Sports-300x125.png\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27524;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"Lifespan-N-Sports-1024x427.png\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:159254;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Lifespan-N-Sports-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13122;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"Lifespan-N-Sports-768x320.png\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104471;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1629,278,'_wp_page_template','elementor_header_footer'),(1630,278,'_elementor_edit_mode','builder'),(1631,278,'_elementor_template_type','wp-page'),(1632,278,'_elementor_version','3.19.4'),(1633,278,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1634,278,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"#more\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\",\"_element_id\":\"more\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#5B7674\",\"secondary_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Manrope\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_weight\":\"800\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"_background_color\":\"#6A8D8B\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\",\"ekit_client_logo_slidetosho_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e72d132\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d33ec7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"c6789f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e777d8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"d6c1937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-hospitals.webp\",\"id\":262,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"593703e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79fbe98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"180909c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN SUPER SPECIALITY HOSPITALS\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.<\\/p><p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"0ca2752\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"d4a934e\"}],\"ekit_section_parallax_multi_items\":[],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a6be3b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"a717d76\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca294ac\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Personalized Care Plans\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"5c26093\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"bf7bc5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"2839154\"}]},\"elements\":[{\"id\":\"57a3da7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Total Healthcare Solution\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2a40fda\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"12bcd75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"70bae51\"}]},\"elements\":[{\"id\":\"0286708\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"State of the Art Technology\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"d6f19ba\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"767fb0c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"b10b6d9\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"221144a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"4d2e619\"}]},\"elements\":[{\"id\":\"2194c0e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Fast Track Appointments\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"526e99e\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"460ade8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"e2caeb5\"}]},\"elements\":[{\"id\":\"46a0dc4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Comprehensive Wellness Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"01439c3\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"46e3d08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"56511f3\"}]},\"elements\":[{\"id\":\"5356aaa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Community Outreach Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2dd5a79\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3986c25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb814f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"411d076\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"67f90dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fa6c299\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharmacies.webp\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f18e962\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"826c876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d2b0a2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"286366c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"beb22c8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PHARMACIES\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.<\\/p><p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.<\\/p><p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"811f29c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2749b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"ca658f1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"SPORTS ENTREPRENEURSHIP\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"316e301\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"03e91c3\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"0d5dfde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"}},\"elements\":[{\"id\":\"f199a90\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true},{\"id\":\"c670c67\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"32366ac\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d238eaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"d609b46\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"09a89e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"e5acff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"61e17b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"b2b16e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"e30f5a6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"ffe1435\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"df141b8\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"b47b3d2\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\",\"ekit_client_logo_slidetosho_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d4c2b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"}},\"elements\":[{\"id\":\"4e53857\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true},{\"id\":\"8126d90\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1635,278,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1636,279,'_wp_page_template','elementor_header_footer'),(1637,279,'_elementor_edit_mode','builder'),(1638,279,'_elementor_template_type','wp-page'),(1639,279,'_elementor_version','3.19.4'),(1640,279,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(1641,279,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"#more\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\",\"_element_id\":\"more\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#5B7674\",\"secondary_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Manrope\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_weight\":\"800\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"_background_color\":\"#6A8D8B\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\",\"ekit_client_logo_slidetosho_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e72d132\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d33ec7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"c6789f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e777d8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"d6c1937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-hospitals.webp\",\"id\":262,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"593703e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79fbe98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"180909c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN SUPER SPECIALITY HOSPITALS\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.<\\/p><p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"0ca2752\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"d4a934e\"}],\"ekit_section_parallax_multi_items\":[],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a6be3b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"a717d76\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca294ac\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Personalized Care Plans\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"5c26093\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"bf7bc5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"2839154\"}]},\"elements\":[{\"id\":\"57a3da7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Total Healthcare Solution\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2a40fda\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"12bcd75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"70bae51\"}]},\"elements\":[{\"id\":\"0286708\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"State of the Art Technology\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"d6f19ba\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"767fb0c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"b10b6d9\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"221144a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"4d2e619\"}]},\"elements\":[{\"id\":\"2194c0e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Fast Track Appointments\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"526e99e\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"460ade8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"e2caeb5\"}]},\"elements\":[{\"id\":\"46a0dc4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Comprehensive Wellness Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"01439c3\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"46e3d08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"56511f3\"}]},\"elements\":[{\"id\":\"5356aaa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Community Outreach Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2dd5a79\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3986c25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb814f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"411d076\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"67f90dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fa6c299\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharmacies.webp\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f18e962\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"826c876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d2b0a2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"286366c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"beb22c8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PHARMACIES\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.<\\/p><p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.<\\/p><p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"811f29c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2749b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"ca658f1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"SPORTS ENTREPRENEURSHIP\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"316e301\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"03e91c3\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"0d5dfde\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"}},\"elements\":[{\"id\":\"f199a90\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true},{\"id\":\"c670c67\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"32366ac\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d238eaf\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"d609b46\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"09a89e1\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"e5acff8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"61e17b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"b2b16e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"e30f5a6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"ffe1435\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"df141b8\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"b47b3d2\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\",\"ekit_client_logo_slidetosho_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d4c2b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"}},\"elements\":[{\"id\":\"4e53857\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true},{\"id\":\"8126d90\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1642,279,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1643,280,'_wp_page_template','elementor_header_footer'),(1644,280,'_elementor_edit_mode','builder'),(1645,280,'_elementor_template_type','wp-page'),(1646,280,'_elementor_version','3.19.4'),(1647,280,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `wp_postmeta` VALUES (1648,280,'_elementor_data','[{\"id\":\"49303d5c\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"e38050a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"945dd0e\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"61befe6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"639cfee8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3dbfc8f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf59475\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3d8ab3da\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54320bd8\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"#more\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bcc3903\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"css_classes\":\"More\",\"_element_id\":\"more\"},\"elements\":[{\"id\":\"7176fac5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"74632daa\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6831d9d3\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"6b892410\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e01413\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5b53b785\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"23f5ffb2\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"6ce53046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"221f9d1b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4cecbd7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"644e6130\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"4c86f36f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"22\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6e82aa21\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6fe30af8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6934d32c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"547ee627\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"26e36043\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"3ee9bd5a\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fecd67c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"7cdaa7d4\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fecba9b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"11db7ff7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"53e436aa\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"397448e7\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#5B7674\",\"secondary_color\":\"#FFFFFF\",\"title_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Manrope\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_weight\":\"800\",\"title_typography_text_transform\":\"capitalize\",\"title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"description_color\":\"#FFFFFF\",\"_background_color\":\"#6A8D8B\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"5114d591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"39c88d73\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2344f4c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"3fdecb05\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29c8ae68\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33dbb526\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"20855dfc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"41904f7\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"bed0558\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55768ebe\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7c3382f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"75f61946\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"2d4c7a4b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"6860ffc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"2569e9c6\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7d33dead\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"f182346\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"26eb4422\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"40193673\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"56609043\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_show_dot\":\"yes\",\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_client_logo_show_arrow\":\"yes\",\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_rows\":\"2\",\"ekit_client_logo_slidetosho_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e72d132\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d33ec7\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"c6789f9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2e777d8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"d6c1937\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-hospitals.webp\",\"id\":262,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"593703e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79fbe98\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"180909c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN SUPER SPECIALITY HOSPITALS\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.<\\/p><p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"0ca2752\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"d4a934e\"}],\"ekit_section_parallax_multi_items\":[],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a6be3b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"a717d76\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ca294ac\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Personalized Care Plans\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"5c26093\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"bf7bc5a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"2839154\"}]},\"elements\":[{\"id\":\"57a3da7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Total Healthcare Solution\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2a40fda\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"12bcd75\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"70bae51\"}]},\"elements\":[{\"id\":\"0286708\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"State of the Art Technology\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"d6f19ba\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"767fb0c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"b10b6d9\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"221144a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"4d2e619\"}]},\"elements\":[{\"id\":\"2194c0e\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Fast Track Appointments\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"526e99e\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"460ade8\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"e2caeb5\"}]},\"elements\":[{\"id\":\"46a0dc4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Comprehensive Wellness Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"01439c3\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"46e3d08\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"56511f3\"}]},\"elements\":[{\"id\":\"5356aaa\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Community Outreach Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2dd5a79\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3986c25\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"cb814f9\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"411d076\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"67f90dd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"fa6c299\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharmacies.webp\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f18e962\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"826c876\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5d2b0a2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"286366c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"beb22c8\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PHARMACIES\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.<\\/p><p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.<\\/p><p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"811f29c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c2749b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"ca658f1\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"SPORTS ENTREPRENEURSHIP\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\"},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"316e301\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-N-Sports.png\",\"id\":277,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"60\",\"bottom\":\"-40\",\"left\":\"60\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"10\",\"bottom\":\"-35\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"c374f29\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"358c537\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"4594096\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":275,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Lions.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"WINNER OF DPCL FIRST SEASON\",\"ekit_image_box_description_text\":\"We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"2d782ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"9f0c61e\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":276,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Vizag-Warriors.webp\",\"alt\":\"Lifespan Vizag Warriors\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PROUD OWNER OF VIZAG WARRIORS\",\"ekit_image_box_description_text\":\"N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}]},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"03e91c3\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"9c2a13f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"}},\"elements\":[{\"id\":\"668809d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true},{\"id\":\"49c0436\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d4c2b6\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"}},\"elements\":[{\"id\":\"4e53857\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true},{\"id\":\"8126d90\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true}],\"isInner\":false},{\"id\":\"7f3e2fbd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"6a265dfa\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"5280a592\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"6fc5b7a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"8ca0304\",\"elType\":\"widget\",\"settings\":{\"title\":\"how it works ?\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"45f6cc6a\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"how do we {{approach ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e22b896\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"356cd149\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"3ac41bc2\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":100},\"elements\":[{\"id\":\"5b54dff8\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b9f8f20\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Holistic Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"70f37923\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":200},\"elements\":[{\"id\":\"6e89986\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13d0e779\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Goal-Oriented Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1ba6b299\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"7d6eadc7\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5478cfeb\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Strengths-Based Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.\",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"423abc86\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"space_between_widgets\":0,\"_inline_size_tablet\":50,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":400},\"elements\":[{\"id\":\"3ac03df8\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"h3\",\"align\":\"left\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-25\",\"bottom\":\"-50\",\"left\":\"25\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"_element_width\":\"auto\",\"_z_index\":1,\"_background_background\":\"gradient\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\",\"_background_color_b\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"34a83b\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"title_text\":\"Mindset and Transformational Approach\",\"description_text\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. \",\"title_size\":\"h5\",\"text_align\":\"center\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"3\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=1b0ff90\",\"description_color\":\"globals\\/colors?id=secondary\",\"description_typography_typography\":\"globals\\/typography?id=text\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"_border_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f079e27\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"5acc9fa9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ceb7bdc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"44688265\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5fb9118d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"width_tablet\":{\"unit\":\"%\",\"size\":59,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":443,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":195,\"sizes\":[]},\"object-fit_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"10c3a910\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"top\",\"space_between_widgets\":20,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5d0f1da0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"16ed7832\",\"elType\":\"widget\",\"settings\":{\"title\":\"why choose us ?\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31505093\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Empowering You to Embrace Change & Create {{Lasting Results}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_mobile\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"49b95ea6\",\"elType\":\"widget\",\"settings\":{\"ekit_progressbar_title\":\"Client Satisfaction\",\"ekit_progressbar_background_background\":\"classic\",\"__globals__\":{\"ekit_progressbar_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_progressbar_title_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_percent_color\":\"globals\\/colors?id=primary\",\"ekit_progressbar_background_color\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[],\"widgetType\":\"elementskit-progressbar\"},{\"id\":\"ea5f000\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.<\\/p>\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5c2cf88e\",\"elType\":\"widget\",\"settings\":{\"text\":\"join us now\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b65905c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"-14\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"3c132258\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64e98c0e\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-thumbs-up\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Experience & Expertise\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"4b1eac36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":50,\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4d85e12c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Personalized Approach\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"2c3cbb39\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"_inline_size_tablet\":100,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"border_radius_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"275871c2\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-call2\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Support & Accountability\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\",\"title_color\":\"globals\\/colors?id=secondary\"},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19935ded\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"3\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"4758d2af\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"1b4f967d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":775,\"sizes\":[]}},\"elements\":[{\"id\":\"6febf48c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"4ac5aff2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Plan\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"37f1e6b5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Experience Breakthroughs & Find Purpose in {{Every Session}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6b319674\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-11\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"-26\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"z_index\":1,\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"1e691f65\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"-10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5ad70623\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5336cecf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"14ac3ba9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Basic Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70242f8e\",\"elType\":\"widget\",\"settings\":{\"title\":\"$59,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47390ab7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7561ab31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6979d568\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"227cc483\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f5f3a94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"e813df7\",\"elType\":\"section\",\"settings\":{\"z_index\":1},\"elements\":[{\"id\":\"29a486a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"2\",\"bottom\":\"4\",\"left\":\"2\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"55ff2796\",\"elType\":\"widget\",\"settings\":{\"title\":\"premium package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5af18500\",\"elType\":\"widget\",\"settings\":{\"title\":\"$79,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56e4db37\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61ff6f22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d894c2c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7947a19b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=1b0ff90\",\"background_color_b\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"73580775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"center\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"-10\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"12b8066e\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"169015ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":10,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3d5f960b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pro Package\",\"header_size\":\"h4\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee0f39f\",\"elType\":\"widget\",\"settings\":{\"title\":\"$99,99\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"20\",\"left\":\"5\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"_background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b7c9dbb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\/month\",\"header_size\":\"h6\",\"align\":\"center\",\"_margin\":{\"unit\":\"%\",\"top\":\"-7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"-3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7603f5eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.<\\/p>\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f58a8d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Interdum et malesuada fames\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"d5856fe\"},{\"text\":\"Aliquam suscipit lacus\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"9278186\"},{\"text\":\"Class aptent taciti sociosqu\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"02f4e92\"},{\"text\":\"Pellentesque eget quam sed\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0005052\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"globals\\/colors?id=secondary\",\"text_color_hover\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"6b9af19d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Join now\",\"align\":\"center\",\"background_background\":\"gradient\",\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=secondary\",\"background_color\":\"globals\\/colors?id=primary\",\"background_color_b\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c10e5b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"structure\":\"30\",\"background_background\":\"classic\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.080000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"15\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"}},\"elements\":[{\"id\":\"47107850\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"\"}},\"elements\":[{\"id\":\"87a588a\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5.5,\"suffix\":\"k\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"2e7aa3b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Happy Client \",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"351929af\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_mobile\":50,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"359851b0\",\"elType\":\"widget\",\"settings\":{\"ending_number\":5,\"suffix\":\"+ More\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"7495a0da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Years Has Coaching\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"420c2fe5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":5,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"500\",\"right\":\"500\",\"bottom\":\"500\",\"left\":\"500\",\"isLinked\":true},\"margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"border_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"69db4f75\",\"elType\":\"widget\",\"settings\":{\"ending_number\":25,\"suffix\":\"+\",\"title\":\"\",\"_background_background\":\"classic\",\"__globals__\":{\"typography_number_typography\":\"globals\\/typography?id=5ea2e2b\",\"number_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"\"}},\"elements\":[],\"widgetType\":\"counter\"},{\"id\":\"65fcb0a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Book Publishing\",\"header_size\":\"p\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"585acda8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"c133d61\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4a3e24e2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d7b879a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"456507bd\",\"elType\":\"widget\",\"settings\":{\"title\":\"client testimonial\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"792352ec\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"what our client say about our {{coaching ?}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"1582d910\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style5\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Dyas Kardinal\",\"_id\":\"fcc9019\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Elsa Verina\",\"_id\":\"6ed5d48\",\"designation\":\"Designation\",\"review\":\"I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},{\"client_name\":\"Harumi Hava\",\"_id\":\"6bdb23f\",\"designation\":\"Designation\",\"review\":\"Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation\",\"client_photo\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"client_logo\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"client_logo_active\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}}],\"ekit_testimonial_slidetoshow_tablet\":1,\"ekit_testimonial_slidesToScroll_tablet\":1,\"ekit_testimonial_loop\":\"yes\",\"ekit_testimonial_pause_on_hover\":\"\",\"ekit_testimonial_layout_margin\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_testimonial_description_typography_typography\":\"custom\",\"ekit_testimonial_description_typography_font_family\":\"Poppins\",\"ekit_testimonial_description_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_testimonial_description_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_testimonial_description_typography_font_weight\":\"400\",\"ekit_testimonial_description_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_description_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_active_color\":\"#0066CC\",\"ekit_testimonial_section_wathermark_hover_color\":\"#0066CC\",\"_margin\":{\"unit\":\"%\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"none\",\"__globals__\":{\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_active_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_section_wathermark_hover_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=957e718\",\"ekit_testimonial_client_name_normal_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_client_name_active_color\":\"globals\\/colors?id=primary\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":true},{\"id\":\"2f2ba00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":0,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"a736815\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"-12\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"78612c22\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"image_size\":\"full\",\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":375,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":243,\"sizes\":[]},\"object-fit_tablet\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"15a2da8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":880,\"sizes\":[]},\"margin\":{\"unit\":\"%\",\"top\":\"-15\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"6f141b17\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=accent\"}},\"elements\":[{\"id\":\"3f63beab\",\"elType\":\"widget\",\"settings\":{\"carousel\":{\"2\":{\"id\":54,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"},\"3\":{\"id\":55,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"},\"4\":{\"id\":56,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"},\"5\":{\"id\":57,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"},\"6\":{\"id\":58,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/audience-applauding-at-seminar.jpg\"},\"7\":{\"id\":59,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/card-mockup-in-seminar.jpg\"}},\"thumbnail_size\":\"full\",\"slides_to_show\":\"4\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\",\"slides_to_scroll\":\"1\",\"slides_to_scroll_tablet\":\"1\",\"slides_to_scroll_mobile\":\"1\",\"navigation\":\"none\",\"link_to\":\"file\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-1\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84af48d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":60,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"2c428808\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"48b3ff97\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":649,\"sizes\":[]}},\"elements\":[{\"id\":\"609758f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"44718040\",\"elType\":\"widget\",\"settings\":{\"title\":\"FREQUENTLY ASKED QUESTIONS\",\"header_size\":\"h6\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1a9caabe\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"our most {{common}} question\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"4320b4aa\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"619caa47\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"3a2cd3ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":150},\"elements\":[{\"id\":\"2cb5cb70\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"What is life coaching and how can it benefit me?\",\"acc_content\":\"<p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How long does the coaching process typically last?\",\"acc_content\":\"<p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"How often do coaching sessions take place?\",\"acc_content\":\"<p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7906b44b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":300},\"elements\":[{\"id\":\"382bf510\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\"Is coaching confidential?\",\"acc_content\":\"<p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.<\\/p>\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"ce999ec\"},{\"acc_title\":\"How do I choose the right life coach for me?\",\"acc_content\":\"<p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.<\\/p>\",\"_id\":\"5c0a664\"},{\"acc_title\":\"Can life coaching help me if I\'m feeling stuck?\",\"acc_content\":\"<p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed<\\/p>\",\"_id\":\"a105d26\"}],\"ekit_accordion_icon_pos_style\":\"left\",\"ekit_accordion_background_background\":\"gradient\",\"ekit_accordion_title_border_open_border\":\"none\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"ekit_accordion_content_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"ekit_accordion_content_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_accordion_content_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"ekit_accordion_background_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_accordion_background_color_b\":\"globals\\/colors?id=accent\",\"ekit_accordion_title_color\":\"globals\\/colors?id=secondary\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=secondary\",\"ekit_accordion_background_close_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_content_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5dd5141f\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"6e625429\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"space_between_widgets\":20},\"elements\":[{\"id\":\"314f767\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"14b2769d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"1e7a20a5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"4\",\"right\":\"30\",\"bottom\":\"-45\",\"left\":\"-20\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"21302cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"blog & article\",\"header_size\":\"h6\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"761a2de2\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"read our blog & article that {{might help you}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":true},{\"id\":\"5b13f232\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"content_position\":\"bottom\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"4abb7f9\",\"elType\":\"widget\",\"settings\":{\"text\":\"all blog & article\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align\":\"right\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f3fa7f9\",\"elType\":\"widget\",\"settings\":{\"ekit_blog_posts_layout_style\":\"elementskit-post-image-card\",\"ekit_blog_posts_feature_img_size_size\":\"full\",\"ekit_blog_posts_content_trim\":15,\"ekit_blog_posts_read_more\":\"\",\"ekit_blog_posts_cats\":[\"1\"],\"ekit_blog_posts_title_position\":\"before_meta\",\"ekit_blog_posts_meta_select\":[\"date\"],\"ekit_blog_posts_btn_text\":\"Learn more \",\"ekit_blog_posts_background_background\":\"classic\",\"ekit_blog_posts_background_color\":\"#FFFFFF\",\"ekit_blog_posts_shadow_box_shadow_type\":\"yes\",\"ekit_blog_posts_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"ekit_blog_posts_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_text_content_wraper_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_content_border_dimensions\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_feature_img_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_feature_img_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_meta_item_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_item_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_meta_color_normal\":\"#122658\",\"ekit_blog_posts_meta_color_icon_normal\":\"#122658\",\"ekit_blog_posts_title_typography_typography\":\"custom\",\"ekit_blog_posts_title_typography_font_family\":\"Manrope\",\"ekit_blog_posts_title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.375,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1.25,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_title_typography_font_weight\":\"800\",\"ekit_blog_posts_title_typography_text_transform\":\"capitalize\",\"ekit_blog_posts_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_blog_posts_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_blog_posts_title_color\":\"#122658\",\"ekit_blog_posts_title_hover_color\":\"#0066CC\",\"ekit_blog_posts_title_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"ekit_blog_posts_title_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_title_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_blog_posts_content_color\":\"#7A7A7A\",\"ekit_blog_posts_content_color_hover\":\"#7A7A7A\",\"ekit_blog_posts_content_typography_typography\":\"custom\",\"ekit_blog_posts_content_typography_font_family\":\"Poppins\",\"ekit_blog_posts_content_typography_font_size\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"ekit_blog_posts_content_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"%\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"ekit_blog_posts_background_color\":\"globals\\/colors?id=secondary\",\"ekit_blog_posts_title_color\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_title_hover_color\":\"globals\\/colors?id=accent\",\"ekit_blog_posts_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_blog_posts_content_color\":\"globals\\/colors?id=text\",\"ekit_blog_posts_content_color_hover\":\"globals\\/colors?id=text\",\"ekit_blog_posts_title_typography_typography\":\"globals\\/typography?id=0591894\",\"ekit_blog_posts_meta_color_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_meta_color_icon_normal\":\"globals\\/colors?id=primary\",\"ekit_blog_posts_content_background\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-blog-posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2445722\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=bd3a38d\"},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"4a2f4be4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_inline_size_tablet\":100,\"content_position\":\"center\",\"space_between_widgets\":20},\"elements\":[{\"id\":\"34ba285f\",\"elType\":\"widget\",\"settings\":{\"title\":\"get in touch\",\"header_size\":\"h6\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"674c2ce5\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"have any thing to ask ? {{let\'s talk}} we always ready\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align_tablet\":\"text_left\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_title_align_mobile\":\"text_center\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"649813c6\",\"elType\":\"widget\",\"settings\":{\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bc1d5ce\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-map-marker1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"99 Roving St., Big City, PKU 2345\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"29b9dc70\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-envelope1\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Email\",\"description_text\":\"hello@awesomesite.com\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"4224f095\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"title_text\":\"Phone\",\"description_text\":\"+123-456-7890\",\"position\":\"left\",\"title_size\":\"p\",\"__globals__\":{\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"title_color\":\"globals\\/colors?id=accent\",\"description_typography_typography\":\"globals\\/typography?id=66038e2\",\"description_color\":\"globals\\/colors?id=primary\",\"primary_color\":\"globals\\/colors?id=accent\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"hover_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=secondary\"},\"icon_space_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"icon_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"icon_size_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_z_index\":1},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"65260b5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":147,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"6\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"dotted\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"__globals__\":{\"_border_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"41839bc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_inline_size_tablet\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"2a40bd4b\",\"elType\":\"widget\",\"settings\":{\"form-control\":\"235\"},\"elements\":[],\"widgetType\":\"rform\"}],\"isInner\":false}],\"isInner\":false}]'),(1649,280,'_elementor_page_assets','a:1:{s:6:\"styles\";a:30:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";}}'),(1657,282,'_wp_page_template','elementor_header_footer'),(1658,282,'_elementor_edit_mode','builder'),(1659,282,'_elementor_template_type','wp-page'),(1660,282,'_elementor_version','3.19.2'),(1661,282,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"_element_id\":\"more\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"manufacturing\"},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1662,282,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1663,283,'_wp_page_template','elementor_header_footer'),(1664,283,'_elementor_edit_mode','builder'),(1665,283,'_elementor_template_type','wp-page'),(1666,283,'_elementor_version','3.19.2'),(1667,283,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"_element_id\":\"more\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"manufacturing\"},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1668,283,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1669,284,'_wp_page_template','elementor_header_footer'),(1670,284,'_elementor_edit_mode','builder'),(1671,284,'_elementor_template_type','wp-page'),(1672,284,'_elementor_version','3.19.2'),(1673,284,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"_element_id\":\"more\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"manufacturing\"},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07521c8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a140c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"ce71f7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c14c0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"46cc762\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-hospitals.webp\",\"id\":262,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"21ef4c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4726a20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f0e2f32\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN SUPER SPECIALITY HOSPITALS\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.<\\/p><p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"ec7b96b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"d4a934e\"}],\"ekit_section_parallax_multi_items\":[],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"19bf500\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"a717d76\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2fdca7b\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Personalized Care Plans\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"5c26093\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"8545796\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"2839154\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"19bb456\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Total Healthcare Solution\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2a40fda\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"4010dfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"70bae51\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6b7d086\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"State of the Art Technology\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"d6f19ba\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"436fecd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"b10b6d9\"}],\"ekit_section_parallax_multi_items\":[],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5d9636e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"4d2e619\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"bbf22f4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Fast Track Appointments\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"526e99e\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"d8107c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"e2caeb5\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"884b3dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Comprehensive Wellness Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"01439c3\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"2f622ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"56511f3\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e685308\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Community Outreach Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2dd5a79\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f03c8fb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f241d79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"b9c5057\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"414f0a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"93ee7ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharmacies.webp\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7f948f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8865e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ac06980\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"dbed52a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0e6965b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PHARMACIES\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.<\\/p><p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.<\\/p><p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a61fbb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b6c5d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d6dfba\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"SPORTS ENTREPRENEURSHIP\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"256aa75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-N-Sports.png\",\"id\":277,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"60\",\"bottom\":\"-40\",\"left\":\"60\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"10\",\"bottom\":\"-35\",\"left\":\"10\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e28166\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fe9b1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"35a957c\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":275,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Lions.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"WINNER OF DPCL FIRST SEASON\",\"ekit_image_box_description_text\":\"We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_image_floating_box_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7f81f56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad61bdc\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":276,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Vizag-Warriors.webp\",\"alt\":\"Lifespan Vizag Warriors\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PROUD OWNER OF VIZAG WARRIORS\",\"ekit_image_box_description_text\":\"N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_image_box_image_floating_box_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"3a8209d\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"fe4c54d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"}},\"elements\":[{\"id\":\"c990601\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true},{\"id\":\"374e120\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}]'),(1674,284,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1676,285,'_wp_page_template','elementor_header_footer'),(1677,285,'_elementor_edit_mode','builder'),(1678,285,'_elementor_template_type','wp-page'),(1679,285,'_elementor_version','3.19.4'),(1680,285,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"_element_id\":\"more\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"manufacturing\"},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07521c8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a140c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"ce71f7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c14c0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"46cc762\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-hospitals.webp\",\"id\":262,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"21ef4c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4726a20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f0e2f32\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN SUPER SPECIALITY HOSPITALS\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.<\\/p><p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"ec7b96b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"d4a934e\"}],\"ekit_section_parallax_multi_items\":[],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"19bf500\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"a717d76\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2fdca7b\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Personalized Care Plans\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"5c26093\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"8545796\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"2839154\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"19bb456\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Total Healthcare Solution\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2a40fda\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"4010dfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"70bae51\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6b7d086\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"State of the Art Technology\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"d6f19ba\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"436fecd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"b10b6d9\"}],\"ekit_section_parallax_multi_items\":[],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5d9636e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"4d2e619\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"bbf22f4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Fast Track Appointments\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"526e99e\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"d8107c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"e2caeb5\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"884b3dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Comprehensive Wellness Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"01439c3\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"2f622ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"56511f3\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e685308\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Community Outreach Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2dd5a79\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f03c8fb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f241d79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"b9c5057\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"414f0a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"93ee7ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharmacies.webp\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7f948f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8865e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ac06980\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"dbed52a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0e6965b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PHARMACIES\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.<\\/p><p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.<\\/p><p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a61fbb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b6c5d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d6dfba\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"SPORTS ENTREPRENEURSHIP\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"256aa75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-N-Sports.png\",\"id\":277,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"60\",\"bottom\":\"-40\",\"left\":\"60\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"10\",\"bottom\":\"-35\",\"left\":\"10\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e28166\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fe9b1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"35a957c\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":275,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Lions.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"WINNER OF DPCL FIRST SEASON\",\"ekit_image_box_description_text\":\"We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_image_floating_box_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7f81f56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad61bdc\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":276,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Vizag-Warriors.webp\",\"alt\":\"Lifespan Vizag Warriors\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PROUD OWNER OF VIZAG WARRIORS\",\"ekit_image_box_description_text\":\"N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_image_box_image_floating_box_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"3a8209d\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"fe4c54d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"}},\"elements\":[{\"id\":\"c990601\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true},{\"id\":\"374e120\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}]'),(1681,285,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1683,286,'_wp_page_template','elementor_header_footer'),(1684,286,'_elementor_edit_mode','builder'),(1685,286,'_elementor_template_type','wp-page'),(1686,286,'_elementor_version','3.19.4'),(1687,286,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"_element_id\":\"more\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"manufacturing\"},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07521c8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a140c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"ce71f7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c14c0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"46cc762\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-hospitals.webp\",\"id\":262,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"21ef4c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4726a20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f0e2f32\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN SUPER SPECIALITY HOSPITALS\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.<\\/p><p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"ec7b96b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"d4a934e\"}],\"ekit_section_parallax_multi_items\":[],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"19bf500\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"a717d76\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2fdca7b\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Personalized Care Plans\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"5c26093\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"8545796\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"2839154\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"19bb456\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Total Healthcare Solution\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2a40fda\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"4010dfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"70bae51\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6b7d086\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"State of the Art Technology\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"d6f19ba\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"436fecd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"b10b6d9\"}],\"ekit_section_parallax_multi_items\":[],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5d9636e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"4d2e619\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"bbf22f4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Fast Track Appointments\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"526e99e\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"d8107c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"e2caeb5\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"884b3dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Comprehensive Wellness Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"01439c3\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"2f622ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"56511f3\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e685308\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Community Outreach Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2dd5a79\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f03c8fb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f241d79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"b9c5057\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"414f0a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"93ee7ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharmacies.webp\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7f948f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8865e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ac06980\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"dbed52a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0e6965b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PHARMACIES\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.<\\/p><p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.<\\/p><p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a61fbb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b6c5d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d6dfba\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"SPORTS ENTREPRENEURSHIP\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"256aa75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-N-Sports.png\",\"id\":277,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"60\",\"bottom\":\"-40\",\"left\":\"60\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"10\",\"bottom\":\"-35\",\"left\":\"10\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e28166\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fe9b1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"35a957c\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":275,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Lions.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"WINNER OF DPCL FIRST SEASON\",\"ekit_image_box_description_text\":\"We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_image_floating_box_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7f81f56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad61bdc\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":276,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Vizag-Warriors.webp\",\"alt\":\"Lifespan Vizag Warriors\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PROUD OWNER OF VIZAG WARRIORS\",\"ekit_image_box_description_text\":\"N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_image_box_image_floating_box_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"3a8209d\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"fe4c54d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"}},\"elements\":[{\"id\":\"c990601\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true},{\"id\":\"374e120\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}]'),(1688,286,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1690,287,'_wp_page_template','elementor_header_footer'),(1691,287,'_elementor_edit_mode','builder'),(1692,287,'_elementor_template_type','wp-page'),(1693,287,'_elementor_version','3.19.4'),(1694,287,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"_element_id\":\"more\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"manufacturing\"},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07521c8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"hospitals\"},\"elements\":[{\"id\":\"2a140c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"ce71f7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c14c0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"46cc762\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-hospitals.webp\",\"id\":262,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"21ef4c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4726a20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f0e2f32\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN SUPER SPECIALITY HOSPITALS\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.<\\/p><p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"ec7b96b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"d4a934e\"}],\"ekit_section_parallax_multi_items\":[],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"19bf500\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"a717d76\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2fdca7b\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Personalized Care Plans\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"5c26093\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"8545796\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"2839154\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"19bb456\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Total Healthcare Solution\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2a40fda\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"4010dfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"70bae51\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6b7d086\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"State of the Art Technology\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"d6f19ba\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"436fecd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"b10b6d9\"}],\"ekit_section_parallax_multi_items\":[],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5d9636e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"4d2e619\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"bbf22f4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Fast Track Appointments\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"526e99e\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"d8107c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"e2caeb5\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"884b3dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Comprehensive Wellness Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"01439c3\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"2f622ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"56511f3\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e685308\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Community Outreach Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2dd5a79\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f03c8fb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f241d79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"b9c5057\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"414f0a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"93ee7ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharmacies.webp\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7f948f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8865e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ac06980\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"dbed52a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0e6965b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PHARMACIES\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.<\\/p><p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.<\\/p><p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a61fbb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b6c5d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d6dfba\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"SPORTS ENTREPRENEURSHIP\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"256aa75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-N-Sports.png\",\"id\":277,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"60\",\"bottom\":\"-40\",\"left\":\"60\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"10\",\"bottom\":\"-35\",\"left\":\"10\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e28166\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fe9b1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"35a957c\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":275,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Lions.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"WINNER OF DPCL FIRST SEASON\",\"ekit_image_box_description_text\":\"We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_image_floating_box_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7f81f56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad61bdc\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":276,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Vizag-Warriors.webp\",\"alt\":\"Lifespan Vizag Warriors\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PROUD OWNER OF VIZAG WARRIORS\",\"ekit_image_box_description_text\":\"N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_image_box_image_floating_box_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"3a8209d\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"fe4c54d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"}},\"elements\":[{\"id\":\"c990601\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true},{\"id\":\"374e120\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}]'),(1695,287,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1698,98,'_wp_old_date','2024-02-16'),(1699,99,'_wp_old_date','2024-02-16'),(1700,100,'_wp_old_date','2024-02-16'),(1701,101,'_wp_old_date','2024-02-16'),(1702,102,'_wp_old_date','2024-02-16'),(1703,103,'_wp_old_date','2024-02-16'),(1704,104,'_wp_old_date','2024-02-16'),(1705,105,'_wp_old_date','2024-02-16'),(1706,106,'_wp_old_date','2024-02-16'),(1707,288,'_wp_page_template','elementor_header_footer'),(1708,288,'_elementor_edit_mode','builder'),(1709,288,'_elementor_template_type','wp-page'),(1710,288,'_elementor_version','3.19.4');
INSERT INTO `wp_postmeta` VALUES (1711,288,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"_element_id\":\"more\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"manufacturing\"},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07521c8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"hospitals\"},\"elements\":[{\"id\":\"2a140c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"ce71f7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c14c0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"46cc762\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-hospitals.webp\",\"id\":262,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"21ef4c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4726a20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f0e2f32\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN SUPER SPECIALITY HOSPITALS\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.<\\/p><p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"ec7b96b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"d4a934e\"}],\"ekit_section_parallax_multi_items\":[],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"19bf500\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"a717d76\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2fdca7b\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Personalized Care Plans\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"5c26093\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"8545796\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"2839154\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"19bb456\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Total Healthcare Solution\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2a40fda\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"4010dfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"70bae51\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6b7d086\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"State of the Art Technology\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"d6f19ba\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"436fecd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"b10b6d9\"}],\"ekit_section_parallax_multi_items\":[],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5d9636e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"4d2e619\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"bbf22f4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Fast Track Appointments\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"526e99e\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"d8107c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"e2caeb5\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"884b3dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Comprehensive Wellness Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"01439c3\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"2f622ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"56511f3\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e685308\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Community Outreach Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2dd5a79\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f03c8fb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f241d79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"b9c5057\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"414f0a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"93ee7ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharmacies.webp\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7f948f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8865e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ac06980\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"dbed52a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0e6965b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PHARMACIES\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.<\\/p><p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.<\\/p><p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a61fbb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b6c5d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d6dfba\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"SPORTS ENTREPRENEURSHIP\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"256aa75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-N-Sports.png\",\"id\":277,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"60\",\"bottom\":\"-40\",\"left\":\"60\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"10\",\"bottom\":\"-35\",\"left\":\"10\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e28166\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fe9b1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"35a957c\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":275,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Lions.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"WINNER OF DPCL FIRST SEASON\",\"ekit_image_box_description_text\":\"We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_image_floating_box_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7f81f56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad61bdc\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":276,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Vizag-Warriors.webp\",\"alt\":\"Lifespan Vizag Warriors\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PROUD OWNER OF VIZAG WARRIORS\",\"ekit_image_box_description_text\":\"N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_image_box_image_floating_box_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"3a8209d\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"fe4c54d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"}},\"elements\":[{\"id\":\"c990601\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true},{\"id\":\"374e120\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}]'),(1712,288,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1714,289,'_wp_page_template','elementor_header_footer'),(1715,289,'_elementor_edit_mode','builder'),(1716,289,'_elementor_template_type','wp-page'),(1717,289,'_elementor_version','3.19.4'),(1718,289,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"_element_id\":\"more\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"manufacturing\"},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07521c8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"hospitals\"},\"elements\":[{\"id\":\"2a140c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"ce71f7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c14c0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"46cc762\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-hospitals.webp\",\"id\":262,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"21ef4c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4726a20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f0e2f32\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN SUPER SPECIALITY HOSPITALS\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.<\\/p><p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"ec7b96b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"d4a934e\"}],\"ekit_section_parallax_multi_items\":[],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"19bf500\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"a717d76\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2fdca7b\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Personalized Care Plans\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"5c26093\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"8545796\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"2839154\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"19bb456\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Total Healthcare Solution\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2a40fda\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"4010dfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"70bae51\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6b7d086\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"State of the Art Technology\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"d6f19ba\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"436fecd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"b10b6d9\"}],\"ekit_section_parallax_multi_items\":[],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5d9636e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"4d2e619\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"bbf22f4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Fast Track Appointments\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"526e99e\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"d8107c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"e2caeb5\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"884b3dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Comprehensive Wellness Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"01439c3\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"2f622ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"56511f3\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e685308\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Community Outreach Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2dd5a79\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f03c8fb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f241d79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"b9c5057\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"414f0a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"93ee7ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharmacies.webp\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7f948f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8865e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ac06980\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"dbed52a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0e6965b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PHARMACIES\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.<\\/p><p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.<\\/p><p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a61fbb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"b6c5d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d6dfba\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"SPORTS ENTREPRENEURSHIP\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"256aa75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-N-Sports.png\",\"id\":277,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"60\",\"bottom\":\"-40\",\"left\":\"60\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"10\",\"bottom\":\"-35\",\"left\":\"10\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e28166\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fe9b1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"35a957c\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":275,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Lions.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"WINNER OF DPCL FIRST SEASON\",\"ekit_image_box_description_text\":\"We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_image_floating_box_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7f81f56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad61bdc\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":276,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Vizag-Warriors.webp\",\"alt\":\"Lifespan Vizag Warriors\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PROUD OWNER OF VIZAG WARRIORS\",\"ekit_image_box_description_text\":\"N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_image_box_image_floating_box_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"3a8209d\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"fe4c54d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"}},\"elements\":[{\"id\":\"c990601\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true},{\"id\":\"374e120\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}]'),(1719,289,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1721,290,'_wp_page_template','elementor_header_footer'),(1722,290,'_elementor_edit_mode','builder'),(1723,290,'_elementor_template_type','wp-page'),(1724,290,'_elementor_version','3.19.4'),(1725,290,'_elementor_data','[{\"id\":\"0034ab0\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":90,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_background\":\"gradient\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_color_b\":\"#D8D8D8\",\"background_overlay_image\":{\"id\":\"\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/plugins\\/elementor\\/assets\\/images\\/placeholder.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.050000000000000003,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\",\"background_color\":\"globals\\/colors?id=secondary\",\"background_color_b\":\"globals\\/colors?id=23c5e7b\"},\"overflow\":\"hidden\",\"background_color_b\":\"#CFCFCF\",\"background_overlay_background\":\"classic\",\"css_filters_css_filter\":\"custom\",\"css_filters_brightness\":{\"unit\":\"px\",\"size\":85,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"structure\":\"20\",\"reverse_order_tablet\":\"reverse-tablet\",\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"0f999af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"5\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"2\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"space_between_widgets_mobile\":23},\"elements\":[{\"id\":\"62ff8ad\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"opacity\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"image\":{\"id\":22,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/DSC02044-scaled.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_border_border\":\"none\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=primary\"},\"align_tablet\":\"center\",\"width_tablet\":{\"unit\":\"%\",\"size\":45,\"sizes\":[]},\"height_tablet\":{\"unit\":\"px\",\"size\":340,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":320,\"sizes\":[]},\"_animation\":\"none\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"width_mobile\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"71d4d43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"4\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"8\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100,\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"867b192\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":61,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Arrow1.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":15,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"3\",\"right\":\"40\",\"bottom\":\"-45\",\"left\":\"-15\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_z_index\":1,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ddec505\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Versatile Tycoon, Proficient in Diverse Realms\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"\"},\"align_tablet\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ab466c\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"The dynamic {{ Mr. Narendra Ram}}\",\"ekit_heading_title_tag\":\"h1\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=4f64a1f\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=26fe4c0\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"globals\\/colors?id=primary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=primary\"},\"ekit_heading_title_align_tablet\":\"text_center\",\"_animation\":\"none\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"e045e00\",\"elType\":\"widget\",\"settings\":{\"align_tablet\":\"center\",\"editor\":\"<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"320e13d\",\"elType\":\"widget\",\"settings\":{\"text\":\"discover more\",\"selected_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"icon_align\":\"right\",\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"hover_animation\":\"grow\",\"align_tablet\":\"center\",\"link\":{\"url\":\"#more\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20744e9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"em\",\"top\":\"6\",\"right\":\"1\",\"bottom\":\"6\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"},\"overflow\":\"hidden\",\"_element_id\":\"more\",\"css_classes\":\"more\"},\"elements\":[{\"id\":\"fc39988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"3\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"0f20c3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"who am I?\",\"header_size\":\"h6\",\"align\":\"left\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20b88da\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"NARENDRA  RAM\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=1b0ff90\",\"ekit_heading_title_color\":\"globals\\/colors?id=secondary\",\"ekit_heading_title_color_hover\":\"globals\\/colors?id=secondary\"},\"ekit_heading_title_color\":\"#FFFFFF\",\"ekit_heading_title_color_hover\":\"#FFFFFF\",\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_color_hover\":\"#0066CC\",\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":4.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":3.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":2,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"f109edb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.<\\/em><\\/p>\",\"_padding\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"globals\\/colors?id=1b0ff90\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d82919\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-1\",\"right\":0,\"bottom\":\"3\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"bdd8aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37ca892\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"EDUCATION\",\"description_text\":\"B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"primary_color\":\"#0C85FF\",\"secondary_color\":\"#FFFFFF\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"rem\",\"size\":1.1000000000000001,\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":1,\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"title_typography_font_weight\":\"600\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"1d9dd12\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e9cd298\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"SKILLS AND COMPETENCIES\",\"description_text\":\"Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_size\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=7e08b7a\",\"primary_color\":\"globals\\/colors?id=1b0ff90\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"icon_space\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"position_mobile\":\"left\",\"text_align\":\"left\",\"description_color\":\"#DFD2D2\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"f4d0dc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">service and a supporter of social equality.<\\/span><\\/p><p class=\\\"cvGsUA direction-ltr align-start para-style-body\\\"><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">As a first-generation entrepreneur, he not only excelled in the <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">business realm but also fortified the pillars of health and <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">education, contributing significantly to the nation\'s progress. <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embark on a path of innovation, leadership, and positive change <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">alongside Mr. Narendra Ram, a true influencer shaping success <\\/span><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">stories.<\\/span><\\/p>\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f02157d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"3\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"0\",\"right\":\"4\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"6a6db6d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":176,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":65,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-70\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-35\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-62\",\"left\":\"16\",\"isLinked\":false},\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d5707a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":177,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-4.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":72,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"object-fit\":\"cover\",\"css_filters_css_filter\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_z_index\":1,\"height_tablet\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"height_mobile\":{\"unit\":\"px\",\"size\":200,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"42\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"78b9ffb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"em\",\"top\":\"4\",\"right\":\"1\",\"bottom\":\"4\",\"left\":\"1\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"2\",\"right\":\"1\",\"bottom\":\"2\",\"left\":\"1\",\"isLinked\":false},\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"d129068\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[{\"id\":\"415127d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":794,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f2de80c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":20},\"elements\":[{\"id\":\"ee19b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GOALS\",\"header_size\":\"h6\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d08e68\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"Mastering Success In Diverse Realms {{ An Enriched, Dynamic Journey!}}\",\"ekit_heading_sub_title\":\"Time has changed\",\"shadow_text_content\":\"bussiness\",\"ekit_heading_show_seperator\":\"\",\"ekit_heading_title_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_heading_title_typography_typography\":\"globals\\/typography?id=5ea2e2b\",\"ekit_heading_focused_title_typography_typography\":\"globals\\/typography?id=6cfe23f\",\"ekit_heading_focused_title_color\":\"globals\\/colors?id=accent\",\"ekit_heading_focused_title_color_hover\":\"globals\\/colors?id=accent\",\"ekit_heading_title_color\":\"\",\"ekit_heading_title_color_hover\":\"\"},\"ekit_heading_title_typography_typography\":\"custom\",\"ekit_heading_title_typography_font_family\":\"Manrope\",\"ekit_heading_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_title_typography_font_weight\":\"800\",\"ekit_heading_title_typography_text_transform\":\"capitalize\",\"ekit_heading_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_typography_typography\":\"custom\",\"ekit_heading_focused_title_typography_font_family\":\"Bad Script\",\"ekit_heading_focused_title_typography_font_size\":{\"unit\":\"rem\",\"size\":3,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_tablet\":{\"unit\":\"rem\",\"size\":2.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":1.5,\"sizes\":[]},\"ekit_heading_focused_title_typography_font_weight\":\"700\",\"ekit_heading_focused_title_typography_text_transform\":\"capitalize\",\"ekit_heading_focused_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.1000000000000001,\"sizes\":[]},\"ekit_heading_focused_title_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_heading_title_align\":\"text_center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"ekit_heading_seperator_image\":{\"id\":\"38\",\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-1.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"9e8dea5\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"editor\":\"<p><span class=\\\"OYPEnA text-decoration-none text-strikethrough-none\\\">Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"e248a24\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"overflow\":\"hidden\"},\"elements\":[{\"id\":\"69e15e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"df2a5ca\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"ENHANCING QUALITY OF LIFE\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\",\"_border_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"02aaab6\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true},{\"id\":\"24781a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"_inline_size_tablet\":100,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"ecd9047\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":124,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Untitled-design-2.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"height\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"object-fit\":\"cover\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f601467\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"space_between_widgets\":20,\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"bb47e74\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"TO CREATE JOB OPPORTUNITIES FOR YOUTH\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":150,\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"a86503c\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-Target\",\"library\":\"ekiticons\"},\"view\":\"stacked\",\"shape\":\"square\",\"title_text\":\"PROMOTING SUSTAINABILITY FOR A GREENER PLANET\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"h5\",\"icon_space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_padding\":{\"unit\":\"em\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"_background_color\":\"globals\\/colors?id=accent\",\"title_color\":\"globals\\/colors?id=secondary\",\"description_color\":\"globals\\/colors?id=secondary\",\"title_typography_typography\":\"globals\\/typography?id=0591894\",\"primary_color\":\"globals\\/colors?id=primary\",\"secondary_color\":\"globals\\/colors?id=secondary\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":300,\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5953a6c\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"manufacturing\"},\"elements\":[{\"id\":\"58264c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null},\"elements\":[{\"id\":\"743b16e\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"STATE OF THE ART <br>MANUFACTURING FACILITY\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"3a70122\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited.jpg\",\"id\":136,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"185a38a\",\"elType\":\"section\",\"settings\":{\"ekit_all_conditions_list\":[{\"_id\":\"0a96800\"}],\"ekit_section_parallax_multi_items\":[],\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d24c1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"ekit_all_conditions_list\":[{\"_id\":\"842c800\"}]},\"elements\":[{\"id\":\"df37222\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PRIVATE LIMITED\",\"ekit_heading_sub_title\":\"India\'s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \\\"let food be the medicine,\\\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"815cc91\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[]},\"elements\":[{\"id\":\"2bf446e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}]},\"elements\":[{\"id\":\"64f48b9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":143,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-3.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\",\"ekit_image_box_description_text\":\"The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"a6bd53d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}]},\"elements\":[{\"id\":\"0e54eb9\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":142,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-2.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \",\"ekit_image_box_description_text\":\"Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_imagebox_container_border_group_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":false},\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"78ba55a\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"ekit_all_conditions_list\":[{\"_id\":\"50d975f\"}]},\"elements\":[{\"id\":\"1926f0d\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":141,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-manufacturing-1.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\",\"ekit_image_box_description_text\":\"Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty. \",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"df555a2\"}],\"ekit_image_box_heading_color_hover\":\"#5B7674\"},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"58126a7\",\"elType\":\"widget\",\"settings\":{\"ekit_client_logo_repiter\":[{\"ekit_client_logo_list_title\":\"GMP\",\"_id\":\"2baf013\",\"ekit_client_logo_image_normal\":{\"id\":167,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-9.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":150,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-317.png\"}},{\"ekit_client_logo_list_title\":\"WHO GMP\",\"_id\":\"5c58f5b\",\"ekit_client_logo_image_normal\":{\"id\":166,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-8.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":152,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-318.png\"}},{\"ekit_client_logo_list_title\":\"KOSHER\",\"_id\":\"e3ab192\",\"ekit_client_logo_image_normal\":{\"id\":169,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-11.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_enable_link\":\"yes\",\"ekit_client_logo_image_hover\":{\"id\":154,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-319.png\"}},{\"ekit_client_logo_list_title\":\"ISO\",\"_id\":\"8a3a986\",\"ekit_client_logo_image_normal\":{\"id\":168,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-10.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":156,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-320.png\"}},{\"ekit_client_logo_list_title\":\"Made In India\",\"_id\":\"c7fc88d\",\"ekit_client_logo_image_normal\":{\"id\":163,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-5.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"}},{\"ekit_client_logo_list_title\":\"HAACP\",\"ekit_client_logo_image_normal\":{\"id\":165,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-7.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"a35d7e3\"},{\"ekit_client_logo_list_title\":\"Ayush\",\"ekit_client_logo_image_normal\":{\"id\":164,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-6.png\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_client_logo_image_hover\":{\"id\":158,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-321.png\"},\"_id\":\"d7f9073\"},{\"_id\":\"827fc5f\",\"ekit_client_logo_list_title\":\"Fssai\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-2.png\",\"id\":160,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"75dae51\",\"ekit_client_logo_list_title\":\"USFDA\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-3.png\",\"id\":161,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},{\"_id\":\"72e80fd\",\"ekit_client_logo_list_title\":\"FSSC 22000\",\"ekit_client_logo_image_normal\":{\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/Lifespan-Private-Limited-Licenses-1.png\",\"id\":159,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}}],\"ekit_client_logo_left_arrow\":\"icon icon-left-arrows\",\"ekit_client_logo_right_arrow\":\"icon icon-right-arrow\",\"ekit_client_logo_opacity\":{\"unit\":\"\",\"size\":1},\"ekit_client_logo_image_box_shadow_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_group_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"0\",\"blur\":\"10\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0)\"},\"ekit_client_logo_image_style_border_group_border\":\"solid\",\"ekit_client_logo_image_style_border_group_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":\"1\"},\"ekit_client_logo_image_style_border_group_color\":\"#333333\",\"ekit_client_logo_image_style_hover_border_group_border\":\"solid\",\"ekit_client_logo_image_style_hover_border_group_color\":\"#000000\",\"ekit_client_logo_background_hover_group_background\":\"gradient\",\"ekit_client_logo_background_hover_group_color\":\"rgba(0,0,0,0)\",\"ekit_client_logo_background_hover_group_color_b\":\"rgba(242,41,91,0)\",\"ekit_client_logo_client_logo_dot_style\":\"dot_dashed\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow_type\":\"yes\",\"ekit_client_logo_image_box_shadow_hover_group_box_shadow\":{\"horizontal\":\"5\",\"vertical\":\"10\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0,0,0,0.1)\"},\"ekit_client_logo_dot_bg_color\":\"rgba(0,0,0,0.1)\",\"ekit_client_logo_dot_bg_color_active\":\"rgba(0,0,0,0.5)\",\"ekit_client_logo_dot_background_background\":\"classic\",\"ekit_client_logo_dot_background_color\":\"#cccccc\",\"ekit_client_logo_dot_active_background_background\":\"classic\",\"ekit_client_logo_dot_active_background_color\":\"#000000\",\"ekit_client_logo_left_arrow_icon\":{\"value\":\"icon icon-left-arrows\",\"library\":\"ekiticons\"},\"ekit_client_logo_right_arrow_icon\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"__fa4_migrated\":{\"ekit_client_logo_left_arrow_icon\":\"1\",\"ekit_client_logo_right_arrow_icon\":\"1\"},\"ekit_all_conditions_list\":[{\"_id\":\"2b52f4a\"}],\"ekit_client_logo_slidetosho_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_slidesToScroll\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"ekit_client_logo_container_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_client_logo_container_min_height_mobile\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_client_logo_client_logo_background_group_background\":\"classic\",\"ekit_client_logo_dot_active_width\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_client_logo_slidetosho\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_client_logo_autoplay\":\"\",\"ekit_client_logo_pause_on_hover\":\"\",\"ekit_client_logo_rows\":\"2\"},\"elements\":[],\"widgetType\":\"elementskit-client-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"07521c8\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"hospitals\"},\"elements\":[{\"id\":\"2a140c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"ce71f7c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharamcies-logo.png\",\"id\":265,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-52\",\"right\":\"0\",\"bottom\":\"-75\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"9c14c0f\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"46cc762\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-hospitals.webp\",\"id\":262,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"21ef4c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4726a20\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"f0e2f32\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN SUPER SPECIALITY HOSPITALS\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.<\\/p><p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"ec7b96b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"d4a934e\"}],\"ekit_section_parallax_multi_items\":[],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"19bf500\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"a717d76\"}],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"2fdca7b\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Personalized Care Plans\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"5c26093\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"8545796\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"2839154\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"19bb456\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Total Healthcare Solution\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2a40fda\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"4010dfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"70bae51\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"6b7d086\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"State of the Art Technology\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"d6f19ba\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_icon_line_height_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"436fecd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"ekit_all_conditions_list\":[{\"_id\":\"b10b6d9\"}],\"ekit_section_parallax_multi_items\":[],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"5d9636e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"4d2e619\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"bbf22f4\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Fast Track Appointments\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"526e99e\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"d8107c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"e2caeb5\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"884b3dd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Comprehensive Wellness Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"01439c3\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_description_typography_group_typography\":\"custom\",\"ekit_icon_description_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"2f622ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"ekit_all_conditions_list\":[{\"_id\":\"56511f3\"}],\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"e685308\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_title_text\":\"Community Outreach Programs\",\"ekit_icon_box_description_text\":\"\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_text_align\":\"left\",\"ekit_icon_box_bg_ovelry_color\":\"#bababa\",\"ekit_icon_box_bg_ovelry_color_hv\":\"#23a455\",\"ekit_icon_box_enable_btn\":\"\",\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\",\"size\":\"15\"},\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":\"\"},\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"size\":\"15\"},\"ekit_icon_title_typography_group_typography\":\"custom\",\"ekit_icon_title_typography_group_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#5B7674\",\"ekit_icon_box_show_image\":{\"id\":257,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/placeholder-240.png\"},\"ekit_icon_box_header_icon\":\"icon icon-star\",\"ekit_icon_box_header_image\":{\"id\":256,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/info-box-icon-21.png\"},\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\",\"size\":\"15\"},\"ekit_icon_box_header_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__fa4_migrated\":{\"ekit_icon_box_header_icons\":\"1\"},\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_color\":\"#2575FC\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":\"1\"},\"ekit_icon_box_hover_primary_color\":\"#FFFFFF\",\"ekit_icon_box_border_icon_group_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"ekit_icon_box_border_icon_group_color\":\"#2575FC\",\"ekit_icon_box_icon_line_height\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"ekit_icon_box_icon_vertical_align\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_icon_title_color\":\"#FFFFFF\",\"ekit_icon_title_color_hover\":\"#FFFFFF\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"ekit_icon_box_iocnbox_border_group_color\":\"rgba(0, 0, 0, 0.3)\",\"ekit_icon_description_color\":\"#FFFFFF\",\"ekit_icon_description_color_hover\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_hover_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_hover_group_color\":\"#3A4746\",\"ekit_all_conditions_list\":[{\"_id\":\"2dd5a79\"}],\"ekit_icon_title_typography_group_font_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"ekit_icon_box_icon_space_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_global_link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f03c8fb\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f241d79\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":65},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"b9c5057\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"414f0a1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"-60\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"93ee7ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Pharmacies.webp\",\"id\":264,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7f948f5\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":35},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_flex_size\":\"none\",\"_element_width\":\"initial\"},\"elements\":[{\"id\":\"8865e2c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Phramacy-logo.png\",\"id\":273,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\",\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ac06980\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"b16aed9\"}],\"ekit_section_parallax_multi_items\":[],\"layout\":\"full_width\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"dbed52a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"38e6f9b\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"0e6965b\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"LIFESPAN PHARMACIES\",\"ekit_heading_sub_title\":\"\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"yes\",\"ekit_heading_extra_title\":\"<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.<\\/p><p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.<\\/p><p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.<\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_sub_title_show\":\"yes\",\"ekit_heading_seperator_color\":\"#5B7674\",\"ekit_heading_title_typography_typography\":\"custom\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5a61fbb\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"ekit_all_conditions_list\":[{\"_id\":\"675918e\"}],\"ekit_section_parallax_multi_items\":[],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_element_id\":\"sports\"},\"elements\":[{\"id\":\"b6c5d2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"ekit_all_conditions_list\":[{\"_id\":\"1125414\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"3d6dfba\",\"elType\":\"widget\",\"settings\":{\"ekit_heading_title\":\"SPORTS ENTREPRENEURSHIP\",\"ekit_heading_sub_title\":\"Time has changed\",\"ekit_heading_title_align\":\"center\",\"ekit_heading_seperator_width\":{\"unit\":\"px\",\"size\":\"40\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_heading_section_extra_title_show\":\"\",\"ekit_heading_extra_title\":\"<p><span style=\\\"font-weight: 400\\\">Give your images modern look with Elementor Modern Image box.<\\/span><\\/p>\",\"shadow_text_content\":\"bussiness\",\"ekit_all_conditions_list\":[{\"_id\":\"8aeaf27\"}],\"ekit_heading_seperator_image\":{\"id\":133,\"url\":\"https:\\/\\/ls-narendraram.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2024\\/02\\/placeholder-292.png\"},\"ekit_heading_show_seperator\":\"\",\"title_left_border_color_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"title_left_border_color_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_focused_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_secondary_bg_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_left_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_heading_sub_title_border_color_right_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-heading\"},{\"id\":\"256aa75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-N-Sports.png\",\"id\":277,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"60\",\"bottom\":\"-40\",\"left\":\"60\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-35\",\"right\":\"10\",\"bottom\":\"-35\",\"left\":\"10\",\"isLinked\":false},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e28166\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"ekit_all_conditions_list\":[{\"_id\":\"e02bbad\"}],\"ekit_section_parallax_multi_items\":[],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fe9b1de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"1dc17b9\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"35a957c\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":275,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Lions.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"WINNER OF DPCL FIRST SEASON\",\"ekit_image_box_description_text\":\"We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":90},\"ekit_all_conditions_list\":[{\"_id\":\"dde750a\"}],\"ekit_image_box_image_floating_box_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"},{\"id\":\"7f81f56\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"ekit_all_conditions_list\":[{\"_id\":\"708e93a\"}],\"_inline_size\":null,\"background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"ad61bdc\",\"elType\":\"widget\",\"settings\":{\"ekit_image_box_image\":{\"id\":276,\"url\":\"https:\\/\\/narendraram.com\\/wp-content\\/uploads\\/2024\\/03\\/Lifespan-Vizag-Warriors.webp\",\"alt\":\"Lifespan Vizag Warriors\",\"source\":\"library\",\"size\":\"\"},\"ekit_image_box_title_text\":\"PROUD OWNER OF VIZAG WARRIORS\",\"ekit_image_box_description_text\":\"N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.\",\"ekit_image_box_btn_text\":\"\",\"ekit_image_box_icon\":\"icon icon-right-arrow2\",\"ekit_image_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_image_box_btn_icon_font_size\":{\"unit\":\"px\",\"size\":\"18\"},\"ekit_image_box_button_text_color\":\"#2575fc\",\"ekit_image_box_btn_background_group_background\":\"classic\",\"ekit_image_box_btn_background_group_color\":\"rgba(0,0,0,0)\",\"ekit_image_box_btn_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_imagebox_container_border_group_border\":\"solid\",\"ekit_imagebox_container_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"\"},\"ekit_imagebox_container_border_group_color\":\"#f5f5f5\",\"ekit_image_box_heading_color\":\"#000000\",\"ekit_image_box_thumbnail_custom_dimension\":{\"width\":\"20\",\"height\":\"20\"},\"ekit_image_box_style_simple\":\"style-modern\",\"ekit_image_box_enable_btn\":\"\",\"ekit_image_box_image_classic_curves_width\":{\"unit\":\"%\",\"size\":\"90\"},\"ekit_all_conditions_list\":[{\"_id\":\"bba77af\"}],\"ekit_image_box_image_floating_box_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_floating_box_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_border_hover_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_left_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_image_shadow_right_line_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_imagebox_container_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"ekit_image_box_btn_background_hover_group_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_b_stop_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_tablet\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]},\"_background_hover_gradient_angle_mobile\":{\"unit\":\"deg\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"elementskit-image-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"3a8209d\",\"elType\":\"container\",\"settings\":[],\"elements\":[{\"id\":\"fe4c54d\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\"}},\"elements\":[{\"id\":\"c990601\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true},{\"id\":\"374e120\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}],\"isInner\":false}]'),(1726,290,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(1729,1,'ekit_post_views_count','1'),(1734,27,'_elementor_css','a:6:{s:4:\"time\";i:1715209070;s:5:\"fonts\";a:3:{i:0;s:7:\"Manrope\";i:1;s:10:\"Bad Script\";i:2;s:7:\"Poppins\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1735,182,'_elementor_css','a:6:{s:4:\"time\";i:1715209072;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:9:\"ekiticons\";i:1;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1736,13,'_elementor_css','a:6:{s:4:\"time\";i:1715209072;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:1;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1737,65,'_elementor_css','a:6:{s:4:\"time\";i:1715209072;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:2:{i:0;s:0:\"\";i:9;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=291 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2024-02-05 16:35:52','2024-02-05 16:35:52','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2024-02-05 16:35:52','2024-02-05 16:35:52','',0,'https://ls-narendraram.in8.cdn-alpha.com/?p=1',0,'post','',1),(2,1,'2024-02-05 16:35:52','2024-02-05 16:35:52','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2024-02-05 16:35:52','2024-02-05 16:35:52','',0,'https://ls-narendraram.in8.cdn-alpha.com/?page_id=2',0,'page','',0),(3,1,'2024-02-05 16:35:52','2024-02-05 16:35:52','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://ls-narendraram.in8.cdn-alpha.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where your data is sent</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2024-02-05 16:35:52','2024-02-05 16:35:52','',0,'https://ls-narendraram.in8.cdn-alpha.com/?page_id=3',0,'page','',0),(5,1,'2024-02-05 17:09:55','2024-02-05 17:09:55','','Default Kit','','publish','closed','closed','','default-kit','','','2024-02-05 17:26:36','2024-02-05 17:26:36','',0,'https://ls-narendraram.in8.cdn-alpha.com/?p=5',0,'elementor_library','',0),(6,1,'2024-02-05 17:17:19','2024-02-05 17:17:19','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Coming Soon...</h1>		\n			<h1>Contact</h1>		\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"tel:+91%209971123456\" target=\"_blank\" rel=\"noopener\">\n						Phone-alt\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>					</a>\n					<a href=\"mailto:cmd@lifespan.industries\" target=\"_blank\" rel=\"noopener\">\n						Mail-bulk\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M160 448c-25.6 0-51.2-22.4-64-32-64-44.8-83.2-60.8-96-70.4V480c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V345.6c-12.8 9.6-32 25.6-96 70.4-12.8 9.6-38.4 32-64 32zm128-192H32c-17.67 0-32 14.33-32 32v16c25.6 19.2 22.4 19.2 115.2 86.4 9.6 6.4 28.8 25.6 44.8 25.6s35.2-19.2 44.8-22.4c92.8-67.2 89.6-67.2 115.2-86.4V288c0-17.67-14.33-32-32-32zm256-96H224c-17.67 0-32 14.33-32 32v32h96c33.21 0 60.59 25.42 63.71 57.82l.29-.22V416h192c17.67 0 32-14.33 32-32V192c0-17.67-14.33-32-32-32zm-32 128h-64v-64h64v64zm-352-96c0-35.29 28.71-64 64-64h224V32c0-17.67-14.33-32-32-32H96C78.33 0 64 14.33 64 32v192h96v-32z\"></path></svg>					</a>\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"683\" height=\"1024\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w\" sizes=\"(max-width: 683px) 100vw, 683px\" />','Home','','publish','closed','closed','','home','','','2024-02-06 22:45:07','2024-02-06 17:15:07','',0,'https://ls-narendraram.in8.cdn-alpha.com/?page_id=6',0,'page','',0),(7,1,'2024-02-05 17:17:19','2024-02-05 17:17:19','','Home','','inherit','closed','closed','','6-revision-v1','','','2024-02-05 17:17:19','2024-02-05 17:17:19','',6,'https://ls-narendraram.in8.cdn-alpha.com/?p=7',0,'revision','',0),(8,1,'2024-02-05 17:20:13','2024-02-05 17:20:13','','DSC02078','','inherit','open','closed','','dsc02078','','','2024-02-05 17:20:13','2024-02-05 17:20:13','',6,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078.jpg',0,'attachment','image/jpeg',0),(10,1,'2024-02-05 17:21:19','2024-02-05 17:21:19','','Home','','inherit','closed','closed','','6-revision-v1','','','2024-02-05 17:21:19','2024-02-05 17:21:19','',6,'https://ls-narendraram.in8.cdn-alpha.com/?p=10',0,'revision','',0),(11,1,'2024-02-05 17:21:20','2024-02-05 17:21:20','','Home','','inherit','closed','closed','','6-revision-v1','','','2024-02-05 17:21:20','2024-02-05 17:21:20','',6,'https://ls-narendraram.in8.cdn-alpha.com/?p=11',0,'revision','',0),(12,1,'2024-02-05 17:21:21','2024-02-05 17:21:21','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"800\" height=\"534\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-1024x683.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-1024x683.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-300x200.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-768x512.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-1536x1024.jpg 1536w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-2048x1365.jpg 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Coming Soon...</h1>','Home','','inherit','closed','closed','','6-revision-v1','','','2024-02-05 17:21:21','2024-02-05 17:21:21','',6,'https://ls-narendraram.in8.cdn-alpha.com/?p=12',0,'revision','',0),(13,1,'2024-02-05 17:24:07','2024-02-05 17:24:07','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-1.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-1-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-98\" data-vertical-menu=750px><a href=\"http://f\">Manufacturing Nutraceutical</a></li>\n<li id=\"menu-item-99\" data-vertical-menu=750px><a href=\"http://e\">Hospital &#038; Pharmacies</a></li>\n<li id=\"menu-item-100\" data-vertical-menu=750px><a href=\"http://1\">Sports</a></li>\n<li id=\"menu-item-101\" data-vertical-menu=750px><a href=\"http://aa\">Power Politics</a></li>\n<li id=\"menu-item-102\" data-vertical-menu=750px><a href=\"http://f\">Feel Foundation</a></li>\n<li id=\"menu-item-103\" data-vertical-menu=750px><a href=\"http://m\">Memberships</a></li>\n<li id=\"menu-item-104\" data-vertical-menu=750px><a href=\"http://3\">Recognition</a></li>\n<li id=\"menu-item-105\" data-vertical-menu=750px><a href=\"http://s\">Awards</a></li>\n<li id=\"menu-item-106\" data-vertical-menu=750px><a href=\"http://d\">Certificates</a></li>\n</ul><button type=\"button\">X</button>			\n			<a href=\"mailto:cmd@lifespan.industries\">\n						Connect\n					</a>','Header','','publish','closed','closed','','header','','','2024-02-15 10:27:39','2024-02-15 04:57:39','',0,'https://ls-narendraram.in8.cdn-alpha.com/?post_type=elementor-hf&#038;p=13',0,'elementor-hf','',0),(14,1,'2024-02-05 17:24:07','2024-02-05 17:24:07','','Header','','inherit','closed','closed','','13-revision-v1','','','2024-02-05 17:24:07','2024-02-05 17:24:07','',13,'https://ls-narendraram.in8.cdn-alpha.com/?p=14',0,'revision','',0),(15,1,'2024-02-05 17:25:51','2024-02-05 17:25:51','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"800\" height=\"534\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-1024x683.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-1024x683.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-300x200.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-768x512.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-1536x1024.jpg 1536w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-2048x1365.jpg 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Coming Soon...</h1>','Home','','inherit','closed','closed','','6-revision-v1','','','2024-02-05 17:25:51','2024-02-05 17:25:51','',6,'https://ls-narendraram.in8.cdn-alpha.com/?p=15',0,'revision','',0),(16,1,'2024-02-05 17:25:52','2024-02-05 17:25:52','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"800\" height=\"534\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-1024x683.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-1024x683.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-300x200.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-768x512.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-1536x1024.jpg 1536w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-2048x1365.jpg 2048w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Coming Soon...</h1>','Home','','inherit','closed','closed','','6-revision-v1','','','2024-02-05 17:25:52','2024-02-05 17:25:52','',6,'https://ls-narendraram.in8.cdn-alpha.com/?p=16',0,'revision','',0),(17,1,'2024-02-05 17:25:53','2024-02-05 17:25:53','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"2560\" height=\"1707\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-scaled.jpg 2560w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-300x200.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-1024x683.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-768x512.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-1536x1024.jpg 1536w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />													\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Coming Soon...</h1>','Home','','inherit','closed','closed','','6-revision-v1','','','2024-02-05 17:25:53','2024-02-05 17:25:53','',6,'https://ls-narendraram.in8.cdn-alpha.com/?p=17',0,'revision','',0),(18,1,'2024-02-05 17:26:36','2024-02-05 17:26:36','','Default Kit','','inherit','closed','closed','','5-revision-v1','','','2024-02-05 17:26:36','2024-02-05 17:26:36','',5,'https://ls-narendraram.in8.cdn-alpha.com/?p=18',0,'revision','',0),(20,1,'2024-02-06 13:32:58','2024-02-06 08:02:58','<!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-0d617423\",\"columns\":1,\"layout\":\"equal\",\"padding\":{\"top\":\"80px\",\"right\":\"20px\",\"bottom\":\"80px\",\"left\":\"20px\"},\"paddingTablet\":{\"top\":\"80px\",\"right\":\"20px\",\"bottom\":\"80px\",\"left\":\"20px\"},\"paddingMobile\":{\"top\":\"40px\",\"right\":\"20px\",\"bottom\":\"40px\",\"left\":\"20px\"},\"margin\":{\"top\":\"0px\",\"bottom\":\"0px\"},\"columnsWidth\":900,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"backgroundColor\":\"#ffffff\",\"backgroundOverlayType\":\"image\",\"align\":\"full\"} -->\n<div id=\"wp-block-themeisle-blocks-advanced-columns-0d617423\" class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-vertical-center\"><div class=\"wp-block-themeisle-blocks-advanced-columns-overlay\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-09847c7b\",\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"paddingMobile\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"columnWidth\":\"100\"} -->\n<div id=\"wp-block-themeisle-blocks-advanced-column-09847c7b\" class=\"wp-block-themeisle-blocks-advanced-column\"><!-- wp:image {\"align\":\"center\",\"id\":135,\"sizeSlug\":\"large\",\"linkDestination\":\"none\",\"className\":\"ticss-3f08ab9a\",\"hasCustomCSS\":true,\"customCSS\":\".ticss-3f08ab9a {}\"} -->\n<figure class=\"wp-block-image aligncenter size-large ticss-3f08ab9a\"><img src=\"https://demosites.io/otter/wp-content/uploads/sites/664/2022/08/coming_soon_img.svg\" alt=\"\" class=\"wp-image-135\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-84bfa495\",\"tag\":\"h1\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#282525\",\"fontSize\":80,\"fontSizeTablet\":48,\"fontSizeMobile\":40,\"fontFamily\":\"Outfit\",\"fontVariant\":\"800\",\"fontStyle\":\"normal\",\"textTransform\":\"none\"} -->\n<h1 id=\"wp-block-themeisle-blocks-advanced-heading-84bfa495\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-84bfa495\">Our Website is Coming soon.</h1>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/countdown {\"id\":\"wp-block-themeisle-blocks-countdown-aead0e2a\",\"date\":\"2023-05-17T18:46:07\",\"backgroundColor\":\"#efece5\",\"valueColor\":\"#202020\",\"labelColor\":\"#9c9c9c\",\"gap\":16,\"width\":193,\"containerWidth\":\"100%\",\"height\":156,\"heightMobile\":125,\"borderRadiusBox\":{\"left\":\"5px\",\"right\":\"5px\",\"bottom\":\"5px\",\"top\":\"5px\"},\"borderStyle\":\"solid\",\"borderWidth\":0,\"valueFontSize\":64,\"valueFontSizeTablet\":\"40px\",\"valueFontSizeMobile\":\"32px\",\"labelFontSize\":\"16px\",\"labelFontSizeTablet\":\"13px\",\"labelFontSizeMobile\":\"14px\",\"hasSeparators\":false,\"valueFontWeight\":\"600\",\"labelFontWeight\":\"600\"} -->\n<div id=\"wp-block-themeisle-blocks-countdown-aead0e2a\" data-date=\"2023-05-17T18:46:07\" class=\"wp-block-themeisle-blocks-countdown\"><div class=\"otter-countdown__container\"><div class=\"otter-countdown__display\"><div name=\"day\" class=\"otter-countdown__display-area is-main-component\"><div class=\"otter-countdown__value\">0</div><div class=\"otter-countdown__label\">Day</div></div><div name=\"hour\" class=\"otter-countdown__display-area is-main-component\"><div class=\"otter-countdown__value\">0</div><div class=\"otter-countdown__label\">Hour</div></div><div name=\"minute\" class=\"otter-countdown__display-area is-main-component\"><div class=\"otter-countdown__value\">0</div><div class=\"otter-countdown__label\">Minute</div></div><div name=\"second\" class=\"otter-countdown__display-area is-main-component\"><div class=\"otter-countdown__value\">0</div><div class=\"otter-countdown__label\">Second</div></div></div></div></div>\n<!-- /wp:themeisle-blocks/countdown -->\n\n<!-- wp:spacer {\"height\":\"40px\"} -->\n<div style=\"height:40px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4956a7c6\",\"tag\":\"p\",\"align\":\"center\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#282525\",\"fontSize\":27,\"fontSizeTablet\":24,\"fontSizeMobile\":22,\"fontFamily\":\"Outfit\",\"fontVariant\":\"normal\",\"fontStyle\":\"normal\"} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-4956a7c6\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4956a7c6\">We are working to deliver the best experience for our visitors. Meanwhile, follow us on Social.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:social-links {\"iconColor\":\"white\",\"iconColorValue\":\"#ffffff\",\"customIconBackgroundColor\":\"#63a18f\",\"iconBackgroundColorValue\":\"#63a18f\",\"size\":\"has-large-icon-size\",\"className\":\"is-style-default\",\"layout\":{\"type\":\"flex\",\"justifyContent\":\"center\"}} -->\n<ul class=\"wp-block-social-links has-large-icon-size has-icon-color has-icon-background-color is-style-default\"><!-- wp:social-link {\"url\":\"#\",\"service\":\"twitter\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"facebook\"} /-->\n\n<!-- wp:social-link {\"url\":\"#\",\"service\":\"instagram\"} /--></ul>\n<!-- /wp:social-links --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-9258d0fb\",\"columns\":1,\"layout\":\"equal\",\"padding\":{\"top\":\"80px\",\"right\":\"20px\",\"bottom\":\"80px\",\"left\":\"20px\"},\"paddingTablet\":{\"top\":\"80px\",\"right\":\"20px\",\"bottom\":\"80px\",\"left\":\"20px\"},\"paddingMobile\":{\"top\":\"40px\",\"right\":\"20px\",\"bottom\":\"40px\",\"left\":\"20px\"},\"margin\":{\"top\":\"0px\",\"bottom\":\"0px\"},\"columnsWidth\":600,\"horizontalAlign\":\"center\",\"verticalAlign\":\"center\",\"backgroundColor\":\"#efece5\",\"backgroundOverlayType\":\"image\",\"align\":\"full\",\"className\":\"ticss-a5d12595\",\"hasCustomCSS\":true,\"customCSS\":\".ticss-a5d12595 {  }\"} -->\n<div id=\"wp-block-themeisle-blocks-advanced-columns-9258d0fb\" class=\"wp-block-themeisle-blocks-advanced-columns alignfull has-1-columns has-desktop-equal-layout has-tablet-equal-layout has-mobile-equal-layout has-vertical-center ticss-a5d12595\"><div class=\"wp-block-themeisle-blocks-advanced-columns-overlay\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-104ab98e\",\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"paddingMobile\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"columnWidth\":\"100\"} -->\n<div id=\"wp-block-themeisle-blocks-advanced-column-104ab98e\" class=\"wp-block-themeisle-blocks-advanced-column\"><!-- wp:themeisle-blocks/advanced-columns {\"id\":\"wp-block-themeisle-blocks-advanced-columns-1c3dfa33\",\"columns\":1,\"layout\":\"oneTwo\",\"layoutTablet\":\"collapsedRows\",\"layoutMobile\":\"collapsedRows\",\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"paddingTablet\":{\"top\":\"64px\",\"right\":\"24px\",\"bottom\":\"64px\",\"left\":\"24px\"},\"paddingMobile\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"margin\":{\"top\":\"0px\",\"bottom\":\"0px\"}} -->\n<div id=\"wp-block-themeisle-blocks-advanced-columns-1c3dfa33\" class=\"wp-block-themeisle-blocks-advanced-columns has-1-columns has-desktop-oneTwo-layout has-tablet-collapsedRows-layout has-mobile-collapsedRows-layout has-vertical-unset\"><div class=\"wp-block-themeisle-blocks-advanced-columns-overlay\"></div><div class=\"innerblocks-wrap\"><!-- wp:themeisle-blocks/advanced-column {\"id\":\"wp-block-themeisle-blocks-advanced-column-dcc8c6af\",\"padding\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"paddingMobile\":{\"top\":\"0px\",\"right\":\"0px\",\"bottom\":\"0px\",\"left\":\"0px\"},\"columnWidth\":\"100\"} -->\n<div id=\"wp-block-themeisle-blocks-advanced-column-dcc8c6af\" class=\"wp-block-themeisle-blocks-advanced-column\"><!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-b25cf246\",\"align\":\"left\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#282525\",\"fontSize\":40,\"fontSizeTablet\":48,\"fontSizeMobile\":40,\"fontFamily\":\"Outfit\",\"fontVariant\":\"800\",\"fontStyle\":\"normal\",\"textTransform\":\"none\"} -->\n<h2 id=\"wp-block-themeisle-blocks-advanced-heading-b25cf246\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-b25cf246\">Stay in the loop!</h2>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/advanced-heading {\"id\":\"wp-block-themeisle-blocks-advanced-heading-4122f520\",\"tag\":\"p\",\"align\":\"left\",\"alignTablet\":\"center\",\"alignMobile\":\"center\",\"headingColor\":\"#282525\",\"fontSize\":22,\"fontSizeTablet\":22,\"fontSizeMobile\":20,\"fontFamily\":\"Outfit\",\"fontVariant\":\"normal\",\"fontStyle\":\"normal\"} -->\n<p id=\"wp-block-themeisle-blocks-advanced-heading-4122f520\" class=\"wp-block-themeisle-blocks-advanced-heading wp-block-themeisle-blocks-advanced-heading-4122f520\">Leave your email and we will send you a heads-up when our site launches.</p>\n<!-- /wp:themeisle-blocks/advanced-heading -->\n\n<!-- wp:themeisle-blocks/form {\"id\":\"wp-block-themeisle-blocks-form-f9b364b5\",\"optionName\":\"158_f9b364b5\",\"submitLabel\":\"Keep me updated\",\"inputPadding\":{\"top\":\"16px\",\"right\":\"16px\",\"bottom\":\"16px\",\"left\":\"16px\"},\"labelColor\":\"#282525\",\"helpLabelColor\":\"#282525\",\"inputRequiredColor\":\"var(u002du002dnv-c-2)\",\"inputBorderColor\":\"#bbbbbb\",\"submitMessageColor\":\"#457843\",\"submitMessageErrorColor\":\"#c66262\",\"submitBackgroundColor\":\"#282525\",\"inputGap\":2,\"inputColor\":\"#131313\",\"inputsGap\":16,\"submitFontSize\":\"1em\"} -->\n<div id=\"wp-block-themeisle-blocks-form-f9b364b5\" class=\"wp-block-themeisle-blocks-form\" data-option-name=\"158_f9b364b5\"><form class=\"otter-form__container\"><!-- wp:themeisle-blocks/form-input {\"id\":\"wp-block-themeisle-blocks-form-input-dee32220\",\"label\":\"Name\",\"placeholder\":\"Your Name\",\"isRequired\":true,\"className\":\"ticss-6f3ea31f\",\"hasCustomCSS\":true} -->\n<div id=\"wp-block-themeisle-blocks-form-input-dee32220\" class=\"wp-block-themeisle-blocks-form-input ticss-6f3ea31f\"><label for=\"wp-block-themeisle-blocks-form-input-dee32220-input\" class=\"otter-form-input-label\"><span class=\"otter-form-input-label__label\">Name</span><span class=\"required\">*</span></label><input type=\"text\" id=\"wp-block-themeisle-blocks-form-input-dee32220-input\" required placeholder=\"Your Name\" class=\"otter-form-input\"/></div>\n<!-- /wp:themeisle-blocks/form-input -->\n\n<!-- wp:themeisle-blocks/form-input {\"id\":\"wp-block-themeisle-blocks-form-input-ed39daf2\",\"type\":\"email\",\"label\":\"Email\",\"placeholder\":\"Your email\",\"isRequired\":true} -->\n<div id=\"wp-block-themeisle-blocks-form-input-ed39daf2\" class=\"wp-block-themeisle-blocks-form-input\"><label for=\"wp-block-themeisle-blocks-form-input-ed39daf2-input\" class=\"otter-form-input-label\"><span class=\"otter-form-input-label__label\">Email</span><span class=\"required\">*</span></label><input type=\"email\" id=\"wp-block-themeisle-blocks-form-input-ed39daf2-input\" required placeholder=\"Your email\" class=\"otter-form-input\"/></div>\n<!-- /wp:themeisle-blocks/form-input -->\n\n<!-- wp:themeisle-blocks/form-nonce {\"formId\":\"wp-block-themeisle-blocks-form-f9b364b5\"} /-->\n\n<!-- wp:paragraph {\"fontSize\":\"small\"} -->\n<p class=\"has-small-font-size\">This form collects your name and email so that we can reach you back. Check out our <a href=\"#\">Privacy Policy</a> page to fully understand how we protect and manage your submitted data.</p>\n<!-- /wp:paragraph --><div class=\"wp-block-button\"><button class=\"wp-block-button__link\" type=\"submit\">Keep me updated</button></div></form></div>\n<!-- /wp:themeisle-blocks/form --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns --></div>\n<!-- /wp:themeisle-blocks/advanced-column --></div></div>\n<!-- /wp:themeisle-blocks/advanced-columns -->','Maintenance Page','','publish','closed','closed','','maintenance-page','','','2024-02-06 13:32:58','2024-02-06 08:02:58','',0,'https://ls-narendraram.in8.cdn-alpha.com/?page_id=20',0,'page','',0),(22,1,'2024-02-06 14:18:45','2024-02-06 08:48:45','','DSC02044','','inherit','open','closed','','dsc02044','','','2024-02-06 14:18:45','2024-02-06 08:48:45','',6,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044.jpg',0,'attachment','image/jpeg',0),(23,1,'2024-02-06 22:45:05','2024-02-06 17:15:05','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"2560\" height=\"1707\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-scaled.jpg 2560w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-300x200.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-1024x683.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-768x512.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-1536x1024.jpg 1536w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />													\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Coming Soon...</h1>','Home','','inherit','closed','closed','','6-revision-v1','','','2024-02-06 22:45:05','2024-02-06 17:15:05','',6,'https://ls-narendraram.in8.cdn-alpha.com/?p=23',0,'revision','',0),(24,1,'2024-02-06 22:45:06','2024-02-06 17:15:06','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"2560\" height=\"1707\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-scaled.jpg 2560w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-300x200.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-1024x683.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-768x512.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-1536x1024.jpg 1536w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02078-2048x1365.jpg 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\" />													\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Coming Soon...</h1>','Home','','inherit','closed','closed','','6-revision-v1','','','2024-02-06 22:45:06','2024-02-06 17:15:06','',6,'https://ls-narendraram.in8.cdn-alpha.com/?p=24',0,'revision','',0),(25,1,'2024-02-06 22:45:07','2024-02-06 17:15:07','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>Coming Soon...</h1>		\n			<h1>Contact</h1>		\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"tel:+91%209971123456\" target=\"_blank\" rel=\"noopener\">\n						Phone-alt\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M497.39 361.8l-112-48a24 24 0 0 0-28 6.9l-49.6 60.6A370.66 370.66 0 0 1 130.6 204.11l60.6-49.6a23.94 23.94 0 0 0 6.9-28l-48-112A24.16 24.16 0 0 0 122.6.61l-104 24A24 24 0 0 0 0 48c0 256.5 207.9 464 464 464a24 24 0 0 0 23.4-18.6l24-104a24.29 24.29 0 0 0-14.01-27.6z\"></path></svg>					</a>\n					<a href=\"mailto:cmd@lifespan.industries\" target=\"_blank\" rel=\"noopener\">\n						Mail-bulk\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M160 448c-25.6 0-51.2-22.4-64-32-64-44.8-83.2-60.8-96-70.4V480c0 17.67 14.33 32 32 32h256c17.67 0 32-14.33 32-32V345.6c-12.8 9.6-32 25.6-96 70.4-12.8 9.6-38.4 32-64 32zm128-192H32c-17.67 0-32 14.33-32 32v16c25.6 19.2 22.4 19.2 115.2 86.4 9.6 6.4 28.8 25.6 44.8 25.6s35.2-19.2 44.8-22.4c92.8-67.2 89.6-67.2 115.2-86.4V288c0-17.67-14.33-32-32-32zm256-96H224c-17.67 0-32 14.33-32 32v32h96c33.21 0 60.59 25.42 63.71 57.82l.29-.22V416h192c17.67 0 32-14.33 32-32V192c0-17.67-14.33-32-32-32zm-32 128h-64v-64h64v64zm-352-96c0-35.29 28.71-64 64-64h224V32c0-17.67-14.33-32-32-32H96C78.33 0 64 14.33 64 32v192h96v-32z\"></path></svg>					</a>\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"683\" height=\"1024\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w\" sizes=\"(max-width: 683px) 100vw, 683px\" />','Home','','inherit','closed','closed','','6-revision-v1','','','2024-02-06 22:45:07','2024-02-06 17:15:07','',6,'https://ls-narendraram.in8.cdn-alpha.com/?p=25',0,'revision','',0),(26,1,'2024-02-07 16:49:22','2024-02-07 11:19:22','','Triump - Life Coach & Motivator Elementor Template Kit','','publish','closed','closed','','triump-life-coach-motivator-elementor-template-kit','','','2024-02-07 16:49:22','2024-02-07 11:19:22','',0,'https://ls-narendraram.in8.cdn-alpha.com/?envato_tk_import=triump-life-coach-motivator-elementor-template-kit',0,'envato_tk_import','',0),(27,1,'2024-02-07 16:53:07','2024-02-07 11:23:07','','Kit Styles: Triump - Life Coach & Motivator Elementor Template Kit','','publish','closed','closed','','global-kit-styles','','','2024-02-15 10:57:57','2024-02-15 05:27:57','',0,'https://ls-narendraram.in8.cdn-alpha.com/?elementor_library=global-kit-styles',0,'elementor_library','',0),(28,1,'2024-02-07 16:53:08','2024-02-07 11:23:08','','Global Kit Styles','','inherit','closed','closed','','27-revision-v1','','','2024-02-07 16:53:08','2024-02-07 11:23:08','',27,'https://ls-narendraram.in8.cdn-alpha.com/?p=28',0,'revision','',0),(29,1,'2024-02-07 16:53:08','2024-02-07 11:23:08','','Global Kit Styles','','inherit','closed','closed','','27-revision-v1','','','2024-02-07 16:53:08','2024-02-07 11:23:08','',27,'https://ls-narendraram.in8.cdn-alpha.com/?p=29',0,'revision','',0),(30,1,'2024-02-07 16:53:09','2024-02-07 11:23:09','','Kit Styles: Triump - Life Coach & Motivator Elementor Template Kit','','inherit','closed','closed','','27-revision-v1','','','2024-02-07 16:53:09','2024-02-07 11:23:09','',27,'https://ls-narendraram.in8.cdn-alpha.com/?p=30',0,'revision','',0),(31,1,'2024-02-07 16:53:31','2024-02-07 11:23:31','','placeholder.png','','inherit','open','closed','','placeholder-png','','','2024-02-07 16:53:31','2024-02-07 11:23:31','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/placeholder.png',0,'attachment','image/png',0),(32,1,'2024-02-07 16:53:46','2024-02-07 11:23:46','<label for=\"rform-input-text-626758613\">\n                        Name                                            </label>\n                                <input name=\"rform-text\" placeholder=\"Your name here\" id=\"rform-input-text-626758613\" type=\"text\" onblur=\"validate_input( \'rform-input-text-\' , \'rform-input-err-\' ,\'626758613\')\" aria-invalid=false data-val=\"by_char\"   >\n            This field is required\n                                    <label for=\"rform-input-email-236279254\">\n                        Email                                            </label>\n                                <input name=\"rform-email\" placeholder=\"Input email here\" id=\"rform-input-email-236279254\" type=\"email\" onblur=\"validate_input( \'rform-input-email-\' , \'rform-input-err-\' ,\'236279254\')\" aria-invalid=false data-val=\"by_char\"   >\n            This field is required\n                                    <label for=\"rform-input-textarea-249690773\">\n                        Message                                            </label>\n                                <textarea name=\"rform-message \" placeholder=\"Input message here\" id=\"rform-input-textarea-249690773\" type=\"text\" onblur=\"validate_input( \'rform-input-textarea-\' , \'rform-input-err-\' ,\'249690773\')\" aria-invalid=false data-val=\"by_char\"   ></textarea>\n            This field is required\n            <button type=\"button\" id=\"rform-button-submit\">\n                                Submit now                                \n            </button>','Contact Form &#8211; RomethemeForm','','publish','closed','closed','','contact-form-romethemeform','','','2024-02-07 16:53:48','2024-02-07 11:23:48','',0,'https://ls-narendraram.in8.cdn-alpha.com/?elementor_library=contact-form-romethemeform',0,'elementor_library','',0),(33,1,'2024-02-07 16:53:47','2024-02-07 11:23:47','','Contact Form &#8211; RomethemeForm','','inherit','closed','closed','','32-revision-v1','','','2024-02-07 16:53:47','2024-02-07 11:23:47','',32,'https://ls-narendraram.in8.cdn-alpha.com/?p=33',0,'revision','',0),(34,1,'2024-02-07 16:53:48','2024-02-07 11:23:48','<label for=\"rform-input-text-626758613\">\n                        Name                                            </label>\n                                <input name=\"rform-text\" placeholder=\"Your name here\" id=\"rform-input-text-626758613\" type=\"text\" onblur=\"validate_input( \'rform-input-text-\' , \'rform-input-err-\' ,\'626758613\')\" aria-invalid=false data-val=\"by_char\"   >\n            This field is required\n                                    <label for=\"rform-input-email-236279254\">\n                        Email                                            </label>\n                                <input name=\"rform-email\" placeholder=\"Input email here\" id=\"rform-input-email-236279254\" type=\"email\" onblur=\"validate_input( \'rform-input-email-\' , \'rform-input-err-\' ,\'236279254\')\" aria-invalid=false data-val=\"by_char\"   >\n            This field is required\n                                    <label for=\"rform-input-textarea-249690773\">\n                        Message                                            </label>\n                                <textarea name=\"rform-message \" placeholder=\"Input message here\" id=\"rform-input-textarea-249690773\" type=\"text\" onblur=\"validate_input( \'rform-input-textarea-\' , \'rform-input-err-\' ,\'249690773\')\" aria-invalid=false data-val=\"by_char\"   ></textarea>\n            This field is required\n            <button type=\"button\" id=\"rform-button-submit\">\n                                Submit now                                \n            </button>','Contact Form &#8211; RomethemeForm','','inherit','closed','closed','','32-revision-v1','','','2024-02-07 16:53:48','2024-02-07 11:23:48','',32,'https://ls-narendraram.in8.cdn-alpha.com/?p=34',0,'revision','',0),(35,1,'2024-02-07 16:53:57','2024-02-07 11:23:57','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n		<p><em><strong>Proin quis neque in mi condimentum rutrum. </strong></em></p><p>vulputate at tempor et, sollicitudin id leo. Vivamus laoreet rhoncus nulla at facilisis. Sed egestas luctus mauris, nec molestie.</p>		\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Courses</h5>		\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Foundations of Life Coaching\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Goal Setting & Action Planning\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Effective Communication\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Transforming Mindset\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Building Resilience & Stress Management\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Launching Your Life Coaching Business\n											</a>\n									</li>\n						</ul>\n			<h5>quick links</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											About Me\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Courses\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											FAQ\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Policies\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n			<p>Copyright © 2023, All rights reserved. Powered by Rometheme.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer &#8211; ElementsKit','','publish','closed','closed','','footer-elementskit','','','2024-02-07 16:53:58','2024-02-07 11:23:58','',0,'https://ls-narendraram.in8.cdn-alpha.com/?elementor_library=footer-elementskit',0,'elementor_library','',0),(36,1,'2024-02-07 16:53:57','2024-02-07 11:23:57','','Footer &#8211; ElementsKit','','inherit','closed','closed','','35-revision-v1','','','2024-02-07 16:53:57','2024-02-07 11:23:57','',35,'https://ls-narendraram.in8.cdn-alpha.com/?p=36',0,'revision','',0),(37,1,'2024-02-07 16:53:58','2024-02-07 11:23:58','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n		<p><em><strong>Proin quis neque in mi condimentum rutrum. </strong></em></p><p>vulputate at tempor et, sollicitudin id leo. Vivamus laoreet rhoncus nulla at facilisis. Sed egestas luctus mauris, nec molestie.</p>		\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Courses</h5>		\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Foundations of Life Coaching\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Goal Setting & Action Planning\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Effective Communication\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Transforming Mindset\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Building Resilience & Stress Management\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Launching Your Life Coaching Business\n											</a>\n									</li>\n						</ul>\n			<h5>quick links</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											About Me\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Courses\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											FAQ\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Policies\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n			<p>Copyright © 2023, All rights reserved. Powered by Rometheme.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer &#8211; ElementsKit','','inherit','closed','closed','','35-revision-v1','','','2024-02-07 16:53:58','2024-02-07 11:23:58','',35,'https://ls-narendraram.in8.cdn-alpha.com/?p=37',0,'revision','',0),(38,1,'2024-02-07 16:54:00','2024-02-07 11:24:00','','placeholder.png','','inherit','open','closed','','placeholder-png-2','','','2024-02-07 16:54:00','2024-02-07 11:24:00','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/placeholder-1.png',0,'attachment','image/png',0),(39,1,'2024-02-07 16:54:04','2024-02-07 11:24:04','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>contact us</h1>		\n		<p><a href=\"#\">Home</a> &gt; Contat us</p>		\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>','Contact us','','publish','closed','closed','','contact-us','','','2024-02-07 16:54:05','2024-02-07 11:24:05','',0,'https://ls-narendraram.in8.cdn-alpha.com/?elementor_library=contact-us',0,'elementor_library','',0),(40,1,'2024-02-07 16:54:05','2024-02-07 11:24:05','','Contact us','','inherit','closed','closed','','39-revision-v1','','','2024-02-07 16:54:05','2024-02-07 11:24:05','',39,'https://ls-narendraram.in8.cdn-alpha.com/?p=40',0,'revision','',0),(41,1,'2024-02-07 16:54:05','2024-02-07 11:24:05','<h1>404</h1>		\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Oops! Page Not Found</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						back to home\n					</a>','Error 404','','publish','closed','closed','','error-404','','','2024-02-07 16:54:06','2024-02-07 11:24:06','',0,'https://ls-narendraram.in8.cdn-alpha.com/?elementor_library=error-404',0,'elementor_library','',0),(42,1,'2024-02-07 16:54:05','2024-02-07 11:24:05','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>contact us</h1>		\n		<p><a href=\"#\">Home</a> &gt; Contat us</p>		\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=London%20Eye%2C%20London%2C%20United%20Kingdom&#038;t=m&#038;z=14&#038;output=embed&#038;iwloc=near\"\n					title=\"London Eye, London, United Kingdom\"\n					aria-label=\"London Eye, London, United Kingdom\"\n			></iframe>','Contact us','','inherit','closed','closed','','39-revision-v1','','','2024-02-07 16:54:05','2024-02-07 11:24:05','',39,'https://ls-narendraram.in8.cdn-alpha.com/?p=42',0,'revision','',0),(43,1,'2024-02-07 16:54:06','2024-02-07 11:24:06','','Error 404','','inherit','closed','closed','','41-revision-v1','','','2024-02-07 16:54:06','2024-02-07 11:24:06','',41,'https://ls-narendraram.in8.cdn-alpha.com/?p=43',0,'revision','',0),(44,1,'2024-02-07 16:54:06','2024-02-07 11:24:06','<h1>404</h1>		\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Oops! Page Not Found</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						back to home\n					</a>','Error 404','','inherit','closed','closed','','41-revision-v1','','','2024-02-07 16:54:06','2024-02-07 11:24:06','',41,'https://ls-narendraram.in8.cdn-alpha.com/?p=44',0,'revision','',0),(45,1,'2024-02-07 16:54:14','2024-02-07 11:24:14','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>blog</h1>		\n		<p><a href=\"#\">Home</a> &gt; blog</p>		\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->','Blog','','publish','closed','closed','','blog','','','2024-02-07 16:54:15','2024-02-07 11:24:15','',0,'https://ls-narendraram.in8.cdn-alpha.com/?elementor_library=blog',0,'elementor_library','',0),(46,1,'2024-02-07 16:54:14','2024-02-07 11:24:14','','Blog','','inherit','closed','closed','','45-revision-v1','','','2024-02-07 16:54:14','2024-02-07 11:24:14','',45,'https://ls-narendraram.in8.cdn-alpha.com/?p=46',0,'revision','',0),(47,1,'2024-02-07 16:54:15','2024-02-07 11:24:15','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>blog</h1>		\n		<p><a href=\"#\">Home</a> &gt; blog</p>		\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->','Blog','','inherit','closed','closed','','45-revision-v1','','','2024-02-07 16:54:15','2024-02-07 11:24:15','',45,'https://ls-narendraram.in8.cdn-alpha.com/?p=47',0,'revision','',0),(48,1,'2024-02-07 16:54:20','2024-02-07 11:24:20','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<a href=\"#\">\n						get started\n					</a>','Header &#8211; ElementsKit','','publish','closed','closed','','header-elementskit','','','2024-02-07 16:54:22','2024-02-07 11:24:22','',0,'https://ls-narendraram.in8.cdn-alpha.com/?elementor_library=header-elementskit',0,'elementor_library','',0),(49,1,'2024-02-07 16:54:21','2024-02-07 11:24:21','','Header &#8211; ElementsKit','','inherit','closed','closed','','48-revision-v1','','','2024-02-07 16:54:21','2024-02-07 11:24:21','',48,'https://ls-narendraram.in8.cdn-alpha.com/?p=49',0,'revision','',0),(50,1,'2024-02-07 16:54:22','2024-02-07 11:24:22','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<a href=\"#\">\n						get started\n					</a>','Header &#8211; ElementsKit','','inherit','closed','closed','','48-revision-v1','','','2024-02-07 16:54:22','2024-02-07 11:24:22','',48,'https://ls-narendraram.in8.cdn-alpha.com/?p=50',0,'revision','',0),(51,1,'2024-02-07 16:56:22','2024-02-07 11:26:22','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>who i am ?</h6>		\n			<h1>meet the coach dyas kardinal</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						read my book\n					</a>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>what i\'ve been through</h6>		\n			<h2>my journey to became a life coach</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h4>you need to understand what the meaning for your existence</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						Vestibulum dignissim turpis vel					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n				<h5>\n						Maecenas vitae nulla et nisl blandit					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n				<h5>\n						Duis tempus commodo velit					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>my story</h6>		\n			<h2>Break Free from Constraints &amp; Aim Higher!</h2>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>2000</h6>		\n			<h5>Award for Outstanding Personal Development Services</h5>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>2010</h6>		\n			<h5>The Year\'s Best Life Coaching Program</h5>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>2020</h6>		\n			<h5>Innovator in Mindset Development and Training Behavioral Coaching</h5>		\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />','About Me','','publish','closed','closed','','about-me','','','2024-02-07 16:56:24','2024-02-07 11:26:24','',0,'https://ls-narendraram.in8.cdn-alpha.com/?elementor_library=about-me',0,'elementor_library','',0),(52,1,'2024-02-07 16:56:23','2024-02-07 11:26:23','','About Me','','inherit','closed','closed','','51-revision-v1','','','2024-02-07 16:56:23','2024-02-07 11:26:23','',51,'https://ls-narendraram.in8.cdn-alpha.com/?p=52',0,'revision','',0),(53,1,'2024-02-07 16:56:24','2024-02-07 11:26:24','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>who i am ?</h6>		\n			<h1>meet the coach dyas kardinal</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						read my book\n					</a>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>what i\'ve been through</h6>		\n			<h2>my journey to became a life coach</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h4>you need to understand what the meaning for your existence</h4>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						Vestibulum dignissim turpis vel					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n				<h5>\n						Maecenas vitae nulla et nisl blandit					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n				<h5>\n						Duis tempus commodo velit					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>my story</h6>		\n			<h2>Break Free from Constraints &amp; Aim Higher!</h2>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>2000</h6>		\n			<h5>Award for Outstanding Personal Development Services</h5>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>2010</h6>		\n			<h5>The Year\'s Best Life Coaching Program</h5>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>2020</h6>		\n			<h5>Innovator in Mindset Development and Training Behavioral Coaching</h5>		\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />','About Me','','inherit','closed','closed','','51-revision-v1','','','2024-02-07 16:56:24','2024-02-07 11:26:24','',51,'https://ls-narendraram.in8.cdn-alpha.com/?p=53',0,'revision','',0),(54,1,'2024-02-07 16:56:27','2024-02-07 11:26:27','','talk-after-seminar-2021-09-24-03-34-42-utc.jpg','','inherit','open','closed','','talk-after-seminar-2021-09-24-03-34-42-utc-jpg','','','2024-02-07 16:56:27','2024-02-07 11:26:27','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg',0,'attachment','image/jpeg',0),(55,1,'2024-02-07 16:56:30','2024-02-07 11:26:30','','conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg','','inherit','open','closed','','conference-seminar-meeting-room-2022-06-15-23-52-45-utc-jpg','','','2024-02-07 16:56:30','2024-02-07 11:26:30','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg',0,'attachment','image/jpeg',0),(56,1,'2024-02-07 16:56:33','2024-02-07 11:26:33','','business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg','','inherit','open','closed','','business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc-jpg','','','2024-02-07 16:56:33','2024-02-07 11:26:33','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg',0,'attachment','image/jpeg',0),(57,1,'2024-02-07 16:56:36','2024-02-07 11:26:36','','shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg','','inherit','open','closed','','shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc-jpg','','','2024-02-07 16:56:36','2024-02-07 11:26:36','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg',0,'attachment','image/jpeg',0),(58,1,'2024-02-07 16:56:39','2024-02-07 11:26:39','','audience-applauding-at-seminar.jpg','','inherit','open','closed','','audience-applauding-at-seminar-jpg','','','2024-02-07 16:56:39','2024-02-07 11:26:39','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg',0,'attachment','image/jpeg',0),(59,1,'2024-02-07 16:56:41','2024-02-07 11:26:41','','card-mockup-in-seminar.jpg','','inherit','open','closed','','card-mockup-in-seminar-jpg','','','2024-02-07 16:56:41','2024-02-07 11:26:41','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg',0,'attachment','image/jpeg',0),(60,1,'2024-02-07 16:56:44','2024-02-07 11:26:44','','diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg','','inherit','open','closed','','diverse-people-in-a-seminar-2022-12-16-00-31-38-utc-jpg','','','2024-02-07 16:56:44','2024-02-07 11:26:44','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/diverse-people-in-a-seminar-2022-12-16-00-31-38-utc.jpg',0,'attachment','image/jpeg',0),(61,1,'2024-02-07 16:56:46','2024-02-07 11:26:46','','Arrow1.png','','inherit','open','closed','','arrow1-png','','','2024-02-07 16:56:46','2024-02-07 11:26:46','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png',0,'attachment','image/png',0),(62,1,'2024-02-07 16:56:46','2024-02-07 11:26:46','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Unlock Your Full Potential</h6>		\n			<h1>Navigate Life\'s Challenges with Confidence</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who i am ?</h6>		\n			<h2>Passionate life coach dedicated to helping</h2>		\n		<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</strong></em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						5+ years experiance for life coaching					\n				</h5>\n				<h5>\n						5,5k client has proven my coaching					\n				</h5>\n		<p> Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<p>Life Coach Mentor</p>		\n			<a href=\"#\">\n						Read more\n					</a>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>SERVICES</h6>		\n			<h2>Unlocking Your Inner Strengths for a Fulfilling Life</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<h5>\n						One-on-One Coaching					\n				</h5>\n									<p>\n						Personalized coaching sessions tailored to the individual\'s specific goals and needs.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Group Coaching					\n				</h5>\n									<p>\n						Conducting coaching sessions in a group setting, where participants can learn from each other.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Workshops & Seminars					\n				</h5>\n									<p>\n						Offering workshops and seminars on various personal development topics such as goal setting.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Online Coaching Programs					\n				</h5>\n									<p>\n						Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.					</p>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"139f0e45\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIxMzlmMGU0NSJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"139f0e45\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiMTM5ZjBlNDUifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"139f0e45\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjEzOWYwZTQ1In0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"139f0e45\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjEzOWYwZTQ1In0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"139f0e45\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIxMzlmMGU0NSJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"139f0e45\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiMTM5ZjBlNDUifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65c368f876254\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65c368f876254\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65c368f876254\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465c368f876254\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465c368f876254\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465c368f876254\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665c368f876254\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665c368f876254\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665c368f876254\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65c368f877c87\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65c368f877c87\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65c368f877c87\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465c368f877c87\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465c368f877c87\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465c368f877c87\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665c368f877c87\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665c368f877c87\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665c368f877c87\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Homepage','','publish','closed','closed','','homepage','','','2024-02-07 16:56:48','2024-02-07 11:26:48','',0,'https://ls-narendraram.in8.cdn-alpha.com/?elementor_library=homepage',0,'elementor_library','',0),(63,1,'2024-02-07 16:56:47','2024-02-07 11:26:47','','Homepage','','inherit','closed','closed','','62-revision-v1','','','2024-02-07 16:56:47','2024-02-07 11:26:47','',62,'https://ls-narendraram.in8.cdn-alpha.com/?p=63',0,'revision','',0),(64,1,'2024-02-07 16:56:48','2024-02-07 11:26:48','<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Unlock Your Full Potential</h6>		\n			<h1>Navigate Life\'s Challenges with Confidence</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who i am ?</h6>		\n			<h2>Passionate life coach dedicated to helping</h2>		\n		<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</strong></em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						5+ years experiance for life coaching					\n				</h5>\n				<h5>\n						5,5k client has proven my coaching					\n				</h5>\n		<p> Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<p>Life Coach Mentor</p>		\n			<a href=\"#\">\n						Read more\n					</a>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>SERVICES</h6>		\n			<h2>Unlocking Your Inner Strengths for a Fulfilling Life</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<h5>\n						One-on-One Coaching					\n				</h5>\n									<p>\n						Personalized coaching sessions tailored to the individual\'s specific goals and needs.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Group Coaching					\n				</h5>\n									<p>\n						Conducting coaching sessions in a group setting, where participants can learn from each other.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Workshops & Seminars					\n				</h5>\n									<p>\n						Offering workshops and seminars on various personal development topics such as goal setting.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Online Coaching Programs					\n				</h5>\n									<p>\n						Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.					</p>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"139f0e45\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIxMzlmMGU0NSJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"139f0e45\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiMTM5ZjBlNDUifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"139f0e45\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjEzOWYwZTQ1In0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"139f0e45\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjEzOWYwZTQ1In0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"139f0e45\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIxMzlmMGU0NSJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"139f0e45\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiMTM5ZjBlNDUifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65c368f876254\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65c368f876254\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65c368f876254\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465c368f876254\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465c368f876254\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465c368f876254\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665c368f876254\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665c368f876254\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665c368f876254\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65c368f877c87\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65c368f877c87\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65c368f877c87\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465c368f877c87\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465c368f877c87\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465c368f877c87\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665c368f877c87\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665c368f877c87\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665c368f877c87\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 05-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Homepage','','inherit','closed','closed','','62-revision-v1','','','2024-02-07 16:56:48','2024-02-07 11:26:48','',62,'https://ls-narendraram.in8.cdn-alpha.com/?p=64',0,'revision','',0),(65,1,'2024-02-13 15:45:17','2024-02-13 10:15:17','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><strong>A Versatile Tycoon, </strong><strong>Proficient in Diverse Realms</strong></p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur. </p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Business Realms</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#manufacturing\">\n											Manufacturing Nutraceutical\n											</a>\n									</li>\n								<li>\n										Hospital & Pharmacies\n									</li>\n								<li>\n										Sports\n									</li>\n								<li>\n										Power Politics\n									</li>\n								<li>\n										Feel Foundation\n									</li>\n						</ul>\n			<h5>Accolades</h5>		\n					<ul>\n							<li>\n										Memberships\n									</li>\n								<li>\n										Recognitions\n									</li>\n								<li>\n										Awards\n									</li>\n								<li>\n										Certificates\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.linkedin.com/in/narendraram/\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n						<svg viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"></path></svg>					</a>\n			<p>Copyright © 2024, All rights reserved.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','publish','closed','closed','','footer','','','2024-02-16 13:14:45','2024-02-16 07:44:45','',0,'https://ls-narendraram.in8.cdn-alpha.com/?post_type=elementor-hf&#038;p=65',0,'elementor-hf','',0),(66,1,'2024-02-13 15:44:51','2024-02-13 10:14:51','','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-13 15:44:51','2024-02-13 10:14:51','',65,'https://ls-narendraram.in8.cdn-alpha.com/?p=66',0,'revision','',0),(68,1,'2024-02-13 15:46:18','2024-02-13 10:16:18','','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-13 15:46:18','2024-02-13 10:16:18','',65,'https://ls-narendraram.in8.cdn-alpha.com/?p=68',0,'revision','',0),(69,1,'2024-02-13 15:46:19','2024-02-13 10:16:19','','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-13 15:46:19','2024-02-13 10:16:19','',65,'https://ls-narendraram.in8.cdn-alpha.com/?p=69',0,'revision','',0),(70,1,'2024-02-13 15:46:19','2024-02-13 10:16:19','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n		<p><em><strong>Proin quis neque in mi condimentum rutrum. </strong></em></p><p>vulputate at tempor et, sollicitudin id leo. Vivamus laoreet rhoncus nulla at facilisis. Sed egestas luctus mauris, nec molestie.</p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Courses</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Foundations of Life Coaching\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Goal Setting & Action Planning\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Effective Communication\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Transforming Mindset\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Building Resilience & Stress Management\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Launching Your Life Coaching Business\n											</a>\n									</li>\n						</ul>\n			<h5>quick links</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											About Me\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Courses\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											FAQ\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Policies\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n			<p>Copyright © 2023, All rights reserved. Powered by Rometheme.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-13 15:46:19','2024-02-13 10:16:19','',65,'https://ls-narendraram.in8.cdn-alpha.com/?p=70',0,'revision','',0),(72,1,'2024-02-13 15:48:30','2024-02-13 10:18:30','','Header','','inherit','closed','closed','','13-revision-v1','','','2024-02-13 15:48:30','2024-02-13 10:18:30','',13,'https://ls-narendraram.in8.cdn-alpha.com/?p=72',0,'revision','',0),(73,1,'2024-02-13 15:48:30','2024-02-13 10:18:30','','Header','','inherit','closed','closed','','13-revision-v1','','','2024-02-13 15:48:30','2024-02-13 10:18:30','',13,'https://ls-narendraram.in8.cdn-alpha.com/?p=73',0,'revision','',0),(74,1,'2024-02-13 15:48:30','2024-02-13 10:18:30','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<a href=\"#\">\n						get started\n					</a>','Header','','inherit','closed','closed','','13-revision-v1','','','2024-02-13 15:48:30','2024-02-13 10:18:30','',13,'https://ls-narendraram.in8.cdn-alpha.com/?p=74',0,'revision','',0),(75,1,'2024-02-13 15:50:13','2024-02-13 10:20:13','<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\" more=\"\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"1280\" height=\"536\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp 1280w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-300x126.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-1024x429.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-768x322.webp 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />													\n			<h2>LIFESPAN SUPER SPECIALITY HOSPITALS</h2>				\n					<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.</p>\n<p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Personalized Care Plans                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Total Healthcare Solution                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    State of the Art Technology                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Fast Track Appointments                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Comprehensive Wellness Programs                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Community Outreach Programs                </h3>\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-768x512.webp 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies.webp 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n			<h2>LIFESPAN PHARMACIES</h2>				\n					<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.</p>\n<p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.</p>\n<p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.</p>\n			<h2>SPORTS ENTREPRENEURSHIP</h2>		\n													<img width=\"800\" height=\"334\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-300x125.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-768x320.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        WINNER OF DPCL FIRST SEASON\n                    </h3>\n                        We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.                    \n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        PROUD OWNER OF VIZAG WARRIORS\n                    </h3>\n                        N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.                    \n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65e821ae4b13c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e821ae4b13c\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e821ae4b13c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e821ae4b13c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e821ae4b13c\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e821ae4b13c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e821ae4b13c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e821ae4b13c\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e821ae4b13c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65e821ae4bbe9\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e821ae4bbe9\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e821ae4bbe9\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e821ae4bbe9\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e821ae4bbe9\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e821ae4bbe9\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e821ae4bbe9\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e821ae4bbe9\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e821ae4bbe9\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                <style>.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-container{min-height:90vh;}.elementor-235 .elementor-element.elementor-element-0034ab0{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, var( --e-global-color-secondary ) 0%, var( --e-global-color-23c5e7b ) 100%);}.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-background-overlay{background-image:url(\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\");background-position:center center;background-size:cover;opacity:0.05;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0 .elementor-background-overlay{filter:brightness( 85% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{height:600px;object-fit:cover;object-position:center center;opacity:1;border-style:none;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:1em 1em 1em 4em;}.elementor-235 .elementor-element.elementor-element-867b192{text-align:left;z-index:1;}.elementor-235 .elementor-element.elementor-element-867b192 img{width:15%;}.elementor-235 .elementor-element.elementor-element-867b192 > .elementor-widget-container{margin:3% 40% -45% -15%;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:left;}.elementor-235 .elementor-element.elementor-element-ddec505 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-primary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-4f64a1f-font-family ), Sans-serif;font-size:var( --e-global-typography-4f64a1f-font-size );font-weight:var( --e-global-typography-4f64a1f-font-weight );text-transform:var( --e-global-typography-4f64a1f-text-transform );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-26fe4c0-font-family ), Sans-serif;font-size:var( --e-global-typography-26fe4c0-font-size );font-weight:var( --e-global-typography-26fe4c0-font-weight );text-transform:var( --e-global-typography-26fe4c0-text-transform );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c > .elementor-widget-container{margin:15px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-right{margin-left:10px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-left{margin-right:10px;}.elementor-235 .elementor-element.elementor-element-20744e9{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:6em 1em 6em 1em;}.elementor-235 .elementor-element.elementor-element-20744e9:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-fc39988.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 3em 1em 1em;}.elementor-235 .elementor-element.elementor-element-0f20c3a{text-align:left;}.elementor-235 .elementor-element.elementor-element-0f20c3a .elementor-heading-title{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-secondary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da > .elementor-widget-container{margin:0% 0% 0% 0%;}.elementor-235 .elementor-element.elementor-element-f109edb{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f109edb > .elementor-widget-container{padding:0em 0em 0em 2em;border-style:solid;border-width:0px 0px 0px 2px;border-color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-1d82919{margin-top:-1%;margin-bottom:3%;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title{margin-bottom:0px;color:#FFFFFF;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title{margin-bottom:0px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-f4d0dc0{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0px;}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 3em;}.elementor-235 .elementor-element.elementor-element-6a6db6d{text-align:left;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{width:65%;height:500px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -70% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a{text-align:right;z-index:1;}.elementor-235 .elementor-element.elementor-element-4d5707a img{width:72%;height:500px;object-fit:cover;object-position:center center;filter:brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 42px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{overflow:hidden;padding:4em 1em 4em 1em;}.elementor-235 .elementor-element.elementor-element-d129068 > .elementor-element-populated{padding:1em 0em 1em 0em;}.elementor-235 .elementor-element.elementor-element-415127d > .elementor-container{max-width:794px;}.elementor-235 .elementor-element.elementor-element-415127d{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-f2de80c > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-ee19b6b{text-align:center;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 > .elementor-widget-container{margin:0% 0% 0% 0%;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-9e8dea5{text-align:center;}.elementor-235 .elementor-element.elementor-element-e248a24{overflow:hidden;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 20px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:80px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-ecd9047 img{height:600px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-f601467.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 80px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:20px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-5953a6c{margin-top:0px;margin-bottom:0px;padding:50px 0px 50px 0px;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-185a38a{margin-top:20px;margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider{width:40px;background:linear-gradient(90deg, #5B7674 0%, #5B7674 100%);}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider.elementskit-style-long{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider, .elementor-235 .elementor-element.elementor-element-df37222 .elementskit-border-divider::before{height:4px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider:before{background-color:#5B7674;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star:after{background-color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:15px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:5;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{box-shadow:0px 0px 10px 0px rgba(0,0,0,0);border-style:solid;border-width:5px 5px 5px 5px;border-color:#333333;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider.simple_logo_image .single-client:hover{box-shadow:5px 10px 15px 0px rgba(0,0,0,0.1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client:hover{border-style:solid;border-color:#000000;}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client .content-image .main-image{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image .main-image{opacity:1;filter:alpha(opacity=1);}@media(max-width:1024px){.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 5em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad{text-align:center;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:45%;height:340px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:8em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:center;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-e045e00{text-align:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:300px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -35% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:300px;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}}@media(min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:40%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:60%;}}@media(max-width:1024px) and (min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:100%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:100%;}.elementor-235 .elementor-element.elementor-element-fc39988{width:100%;}.elementor-235 .elementor-element.elementor-element-f02157d{width:100%;}.elementor-235 .elementor-element.elementor-element-69e15e2{width:100%;}.elementor-235 .elementor-element.elementor-element-24781a1{width:100%;}.elementor-235 .elementor-element.elementor-element-f601467{width:100%;}}@media(max-width:767px){.elementor-235 .elementor-element.elementor-element-0034ab0{padding:0em 0em 0em 0em;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:23px;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 0em 2em 0em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:70%;height:320px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:4em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-20744e9{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:0em 4em 0em 0em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:200px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -62% 16%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:200px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 40px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-width:0px 1px 1px 1px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .swiper-wrapper{padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{min-height:80px;}}</style>		\n						<section data-id=\"0034ab0\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n													<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>				<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>						\n			<a href=\"#more\">\n						discover more\n					</a>\n		</section>\n				<section data-id=\"20744e9\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n							<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>						\n				<section data-id=\"1d82919\" data-element_type=\"section\">\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		</section>\n							<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation&#8217;s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>						\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		</section>\n				<section data-id=\"78b9ffb\" data-element_type=\"section\">\n						<section data-id=\"415127d\" data-element_type=\"section\">\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n							<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>						\n		</section>\n				<section data-id=\"e248a24\" data-element_type=\"section\">\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n		</section>\n		</section>\n				<section data-id=\"5953a6c\" data-element_type=\"section\">\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n				<section data-id=\"185a38a\" data-element_type=\"section\">\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n		</section>\n				<section data-id=\"815cc91\" data-element_type=\"section\">\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n		</section>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n		</section>\n		            </form>','Home New','','publish','closed','closed','','home-new','','','2024-03-06 13:26:30','2024-03-06 07:56:30','',0,'https://ls-narendraram.in8.cdn-alpha.com/?page_id=75',0,'page','',0),(76,1,'2024-02-13 15:50:13','2024-02-13 10:20:13','','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-13 15:50:13','2024-02-13 10:20:13','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=76',0,'revision','',0),(78,1,'2024-02-13 15:53:28','2024-02-13 10:23:28','','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-13 15:53:28','2024-02-13 10:23:28','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=78',0,'revision','',0),(79,1,'2024-02-13 15:53:28','2024-02-13 10:23:28','','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-13 15:53:28','2024-02-13 10:23:28','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=79',0,'revision','',0),(80,1,'2024-02-13 15:53:29','2024-02-13 10:23:29','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Unlock Your Full Potential</h6>		\n			<h1>Navigate Life\'s Challenges with Confidence</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who i am ?</h6>		\n			<h2>Passionate life coach dedicated to helping</h2>		\n		<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</strong></em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						5+ years experiance for life coaching					\n				</h5>\n				<h5>\n						5,5k client has proven my coaching					\n				</h5>\n		<p> Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<p>Life Coach Mentor</p>		\n			<a href=\"#\">\n						Read more\n					</a>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>SERVICES</h6>		\n			<h2>Unlocking Your Inner Strengths for a Fulfilling Life</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<h5>\n						One-on-One Coaching					\n				</h5>\n									<p>\n						Personalized coaching sessions tailored to the individual\'s specific goals and needs.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Group Coaching					\n				</h5>\n									<p>\n						Conducting coaching sessions in a group setting, where participants can learn from each other.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Workshops & Seminars					\n				</h5>\n									<p>\n						Offering workshops and seminars on various personal development topics such as goal setting.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Online Coaching Programs					\n				</h5>\n									<p>\n						Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.					</p>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cb43214cf6d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cb43214cf6d\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cb43214cf6d\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cb43214cf6d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cb43214cf6d\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cb43214cf6d\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cb43214cf6d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cb43214cf6d\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cb43214cf6d\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cb43214da2a\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cb43214da2a\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cb43214da2a\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cb43214da2a\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cb43214da2a\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cb43214da2a\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cb43214da2a\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cb43214da2a\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cb43214da2a\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-13 15:53:29','2024-02-13 10:23:29','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=80',0,'revision','',0),(82,1,'2024-02-13 17:16:43','2024-02-13 11:46:43','','Narendra Ram Logo','','inherit','open','closed','','narendra-ram-logo','','','2024-02-13 17:16:43','2024-02-13 11:46:43','',13,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png',0,'attachment','image/png',0),(86,1,'2024-02-13 17:24:24','2024-02-13 11:54:24','','Narendra Ram Logo - 1','','inherit','open','closed','','narendra-ram-logo-1-2','','','2024-02-13 17:24:24','2024-02-13 11:54:24','',13,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1.png',0,'attachment','image/png',0),(87,1,'2024-02-13 17:27:35','2024-02-13 11:57:35','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<a href=\"#\">\n						get started\n					</a>','Header','','inherit','closed','closed','','13-revision-v1','','','2024-02-13 17:27:35','2024-02-13 11:57:35','',13,'https://ls-narendraram.in8.cdn-alpha.com/?p=87',0,'revision','',0),(88,1,'2024-02-13 17:27:35','2024-02-13 11:57:35','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<a href=\"#\">\n						get started\n					</a>','Header','','inherit','closed','closed','','13-revision-v1','','','2024-02-13 17:27:35','2024-02-13 11:57:35','',13,'https://ls-narendraram.in8.cdn-alpha.com/?p=88',0,'revision','',0),(89,1,'2024-02-13 17:27:36','2024-02-13 11:57:36','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1.png 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<a href=\"#\">\n						get started\n					</a>','Header','','inherit','closed','closed','','13-revision-v1','','','2024-02-13 17:27:36','2024-02-13 11:57:36','',13,'https://ls-narendraram.in8.cdn-alpha.com/?p=89',0,'revision','',0),(90,1,'2024-02-13 17:27:40','2024-02-13 11:57:40','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n		<p><em><strong>Proin quis neque in mi condimentum rutrum. </strong></em></p><p>vulputate at tempor et, sollicitudin id leo. Vivamus laoreet rhoncus nulla at facilisis. Sed egestas luctus mauris, nec molestie.</p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Courses</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Foundations of Life Coaching\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Goal Setting & Action Planning\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Effective Communication\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Transforming Mindset\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Building Resilience & Stress Management\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Launching Your Life Coaching Business\n											</a>\n									</li>\n						</ul>\n			<h5>quick links</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											About Me\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Courses\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											FAQ\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Policies\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n			<p>Copyright © 2023, All rights reserved. Powered by Rometheme.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-13 17:27:40','2024-02-13 11:57:40','',65,'https://ls-narendraram.in8.cdn-alpha.com/?p=90',0,'revision','',0),(91,1,'2024-02-13 17:27:40','2024-02-13 11:57:40','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n		<p><em><strong>Proin quis neque in mi condimentum rutrum. </strong></em></p><p>vulputate at tempor et, sollicitudin id leo. Vivamus laoreet rhoncus nulla at facilisis. Sed egestas luctus mauris, nec molestie.</p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Courses</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Foundations of Life Coaching\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Goal Setting & Action Planning\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Effective Communication\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Transforming Mindset\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Building Resilience & Stress Management\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Launching Your Life Coaching Business\n											</a>\n									</li>\n						</ul>\n			<h5>quick links</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											About Me\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Courses\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											FAQ\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Policies\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n			<p>Copyright © 2023, All rights reserved. Powered by Rometheme.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-13 17:27:40','2024-02-13 11:57:40','',65,'https://ls-narendraram.in8.cdn-alpha.com/?p=91',0,'revision','',0),(92,1,'2024-02-13 17:27:40','2024-02-13 11:57:40','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><em><strong>Proin quis neque in mi condimentum rutrum. </strong></em></p><p>vulputate at tempor et, sollicitudin id leo. Vivamus laoreet rhoncus nulla at facilisis. Sed egestas luctus mauris, nec molestie.</p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Courses</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Foundations of Life Coaching\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Goal Setting & Action Planning\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Effective Communication\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Transforming Mindset\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Building Resilience & Stress Management\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Launching Your Life Coaching Business\n											</a>\n									</li>\n						</ul>\n			<h5>quick links</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											About Me\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Courses\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											FAQ\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Policies\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n			<p>Copyright © 2023, All rights reserved. Powered by Rometheme.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-13 17:27:40','2024-02-13 11:57:40','',65,'https://ls-narendraram.in8.cdn-alpha.com/?p=92',0,'revision','',0),(94,1,'2024-02-14 09:23:35','2024-02-14 03:53:35','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><em><strong>Proin quis neque in mi condimentum rutrum. </strong></em></p><p>vulputate at tempor et, sollicitudin id leo. Vivamus laoreet rhoncus nulla at facilisis. Sed egestas luctus mauris, nec molestie.</p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Courses</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Foundations of Life Coaching\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Goal Setting & Action Planning\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Effective Communication\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Transforming Mindset\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Building Resilience & Stress Management\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Launching Your Life Coaching Business\n											</a>\n									</li>\n						</ul>\n			<h5>quick links</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											About Me\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Courses\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											FAQ\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Policies\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n			<p>Copyright © 2023, All rights reserved. Powered by Rometheme.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-14 09:23:35','2024-02-14 03:53:35','',65,'https://ls-narendraram.in8.cdn-alpha.com/?p=94',0,'revision','',0),(95,1,'2024-02-14 09:23:35','2024-02-14 03:53:35','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><em><strong>Proin quis neque in mi condimentum rutrum. </strong></em></p><p>vulputate at tempor et, sollicitudin id leo. Vivamus laoreet rhoncus nulla at facilisis. Sed egestas luctus mauris, nec molestie.</p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Courses</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Foundations of Life Coaching\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Goal Setting & Action Planning\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Effective Communication\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Transforming Mindset\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Building Resilience & Stress Management\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Launching Your Life Coaching Business\n											</a>\n									</li>\n						</ul>\n			<h5>quick links</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											About Me\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Courses\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											FAQ\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Policies\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n			<p>Copyright © 2023, All rights reserved. Powered by Rometheme.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-14 09:23:35','2024-02-14 03:53:35','',65,'https://ls-narendraram.in8.cdn-alpha.com/?p=95',0,'revision','',0),(96,1,'2024-02-14 09:23:35','2024-02-14 03:53:35','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><strong>A Versatile Tycoon, </strong><strong>Proficient in Diverse Realms</strong></p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Philanthropist, Health &amp; Wellness, Sports Entrepreneur. </p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Courses</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Foundations of Life Coaching\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Goal Setting & Action Planning\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Effective Communication\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Transforming Mindset\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Building Resilience & Stress Management\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Launching Your Life Coaching Business\n											</a>\n									</li>\n						</ul>\n			<h5>quick links</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											About Me\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Courses\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											FAQ\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Policies\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n			<p>Copyright © 2024, All rights reserved.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-14 09:23:35','2024-02-14 03:53:35','',65,'https://ls-narendraram.in8.cdn-alpha.com/?p=96',0,'revision','',0),(98,1,'2024-03-06 13:37:09','2024-02-14 03:59:27','','Manufacturing Nutraceutical','','publish','closed','closed','','manufacturing-nutraceutical','','','2024-03-06 13:37:09','2024-03-06 08:07:09','',0,'https://ls-narendraram.in8.cdn-alpha.com/?p=98',1,'nav_menu_item','',0),(99,1,'2024-03-06 13:37:09','2024-02-14 03:59:27','','Hospital & Pharmacies','','publish','closed','closed','','hospital-pharmacies','','','2024-03-06 13:37:09','2024-03-06 08:07:09','',0,'https://ls-narendraram.in8.cdn-alpha.com/?p=99',2,'nav_menu_item','',0),(100,1,'2024-03-06 13:37:09','2024-02-14 03:59:27','','Sports','','publish','closed','closed','','sports','','','2024-03-06 13:37:09','2024-03-06 08:07:09','',0,'https://ls-narendraram.in8.cdn-alpha.com/?p=100',3,'nav_menu_item','',0),(101,1,'2024-03-06 13:37:09','2024-02-14 03:59:27','','Power Politics','','publish','closed','closed','','power-politics','','','2024-03-06 13:37:09','2024-03-06 08:07:09','',0,'https://ls-narendraram.in8.cdn-alpha.com/?p=101',4,'nav_menu_item','',0),(102,1,'2024-03-06 13:37:09','2024-02-14 03:59:27','','Feel Foundation','','publish','closed','closed','','feel-foundation','','','2024-03-06 13:37:09','2024-03-06 08:07:09','',0,'https://ls-narendraram.in8.cdn-alpha.com/?p=102',5,'nav_menu_item','',0),(103,1,'2024-03-06 13:37:09','2024-02-14 03:59:27','','Memberships','','publish','closed','closed','','memberships','','','2024-03-06 13:37:09','2024-03-06 08:07:09','',0,'https://ls-narendraram.in8.cdn-alpha.com/?p=103',6,'nav_menu_item','',0),(104,1,'2024-03-06 13:37:09','2024-02-14 03:59:27','','Recognition','','publish','closed','closed','','recognition','','','2024-03-06 13:37:09','2024-03-06 08:07:09','',0,'https://ls-narendraram.in8.cdn-alpha.com/?p=104',7,'nav_menu_item','',0),(105,1,'2024-03-06 13:37:09','2024-02-14 03:59:27','','Awards','','publish','closed','closed','','awards','','','2024-03-06 13:37:09','2024-03-06 08:07:09','',0,'https://ls-narendraram.in8.cdn-alpha.com/?p=105',8,'nav_menu_item','',0),(106,1,'2024-03-06 13:37:09','2024-02-14 03:59:27','','Certificates','','publish','closed','closed','','certificates','','','2024-03-06 13:37:09','2024-03-06 08:07:09','',0,'https://ls-narendraram.in8.cdn-alpha.com/?p=106',9,'nav_menu_item','',0),(107,1,'2024-02-14 09:29:39','2024-02-14 03:59:39','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1.png 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<a href=\"#\">\n						get started\n					</a>','Header','','inherit','closed','closed','','13-revision-v1','','','2024-02-14 09:29:39','2024-02-14 03:59:39','',13,'https://ls-narendraram.in8.cdn-alpha.com/?p=107',0,'revision','',0),(108,1,'2024-02-14 09:29:39','2024-02-14 03:59:39','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1.png 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<a href=\"#\">\n						get started\n					</a>','Header','','inherit','closed','closed','','13-revision-v1','','','2024-02-14 09:29:39','2024-02-14 03:59:39','',13,'https://ls-narendraram.in8.cdn-alpha.com/?p=108',0,'revision','',0),(109,1,'2024-02-14 09:29:40','2024-02-14 03:59:40','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1.png 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<a href=\"#\">\n						Get Connect\n					</a>','Header','','inherit','closed','closed','','13-revision-v1','','','2024-02-14 09:29:40','2024-02-14 03:59:40','',13,'https://ls-narendraram.in8.cdn-alpha.com/?p=109',0,'revision','',0),(111,1,'2024-02-14 09:32:34','2024-02-14 04:02:34','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1.png 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<a href=\"#\">\n						Get Connect\n					</a>','Header','','inherit','closed','closed','','13-revision-v1','','','2024-02-14 09:32:34','2024-02-14 04:02:34','',13,'https://ls-narendraram.in8.cdn-alpha.com/?p=111',0,'revision','',0),(112,1,'2024-02-14 09:32:34','2024-02-14 04:02:34','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1.png 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<a href=\"#\">\n						Get Connect\n					</a>','Header','','inherit','closed','closed','','13-revision-v1','','','2024-02-14 09:32:34','2024-02-14 04:02:34','',13,'https://ls-narendraram.in8.cdn-alpha.com/?p=112',0,'revision','',0),(113,1,'2024-02-14 09:32:34','2024-02-14 04:02:34','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1.png 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-98\" data-vertical-menu=750px><a href=\"http://f\">Manufacturing Nutraceutical</a></li>\n<li id=\"menu-item-99\" data-vertical-menu=750px><a href=\"http://e\">Hospital &#038; Pharmacies</a></li>\n<li id=\"menu-item-100\" data-vertical-menu=750px><a href=\"http://1\">Sports</a></li>\n<li id=\"menu-item-101\" data-vertical-menu=750px><a href=\"http://aa\">Power Politics</a></li>\n<li id=\"menu-item-102\" data-vertical-menu=750px><a href=\"http://f\">Feel Foundation</a></li>\n<li id=\"menu-item-103\" data-vertical-menu=750px><a href=\"http://m\">Memberships</a></li>\n<li id=\"menu-item-104\" data-vertical-menu=750px><a href=\"http://3\">Recognition</a></li>\n<li id=\"menu-item-105\" data-vertical-menu=750px><a href=\"http://s\">Awards</a></li>\n<li id=\"menu-item-106\" data-vertical-menu=750px><a href=\"http://d\">Certificates</a></li>\n</ul><button type=\"button\">X</button>			\n			<a href=\"#\">\n						Get Connect\n					</a>','Header','','inherit','closed','closed','','13-revision-v1','','','2024-02-14 09:32:34','2024-02-14 04:02:34','',13,'https://ls-narendraram.in8.cdn-alpha.com/?p=113',0,'revision','',0),(116,1,'2024-02-14 09:56:34','2024-02-14 04:26:34','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Unlock Your Full Potential</h6>		\n			<h1>Navigate Life\'s Challenges with Confidence</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who i am ?</h6>		\n			<h2>Passionate life coach dedicated to helping</h2>		\n		<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</strong></em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						5+ years experiance for life coaching					\n				</h5>\n				<h5>\n						5,5k client has proven my coaching					\n				</h5>\n		<p> Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<p>Life Coach Mentor</p>		\n			<a href=\"#\">\n						Read more\n					</a>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>SERVICES</h6>		\n			<h2>Unlocking Your Inner Strengths for a Fulfilling Life</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<h5>\n						One-on-One Coaching					\n				</h5>\n									<p>\n						Personalized coaching sessions tailored to the individual\'s specific goals and needs.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Group Coaching					\n				</h5>\n									<p>\n						Conducting coaching sessions in a group setting, where participants can learn from each other.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Workshops & Seminars					\n				</h5>\n									<p>\n						Offering workshops and seminars on various personal development topics such as goal setting.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Online Coaching Programs					\n				</h5>\n									<p>\n						Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.					</p>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cb43214cf6d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cb43214cf6d\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cb43214cf6d\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cb43214cf6d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cb43214cf6d\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cb43214cf6d\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cb43214cf6d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cb43214cf6d\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cb43214cf6d\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cb43214da2a\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cb43214da2a\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cb43214da2a\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cb43214da2a\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cb43214da2a\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cb43214da2a\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cb43214da2a\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cb43214da2a\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cb43214da2a\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 09:56:34','2024-02-14 04:26:34','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=116',0,'revision','',0),(117,1,'2024-02-14 09:56:34','2024-02-14 04:26:34','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>Unlock Your Full Potential</h6>		\n			<h1>Navigate Life\'s Challenges with Confidence</h1>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who i am ?</h6>		\n			<h2>Passionate life coach dedicated to helping</h2>		\n		<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</strong></em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						5+ years experiance for life coaching					\n				</h5>\n				<h5>\n						5,5k client has proven my coaching					\n				</h5>\n		<p> Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<p>Life Coach Mentor</p>		\n			<a href=\"#\">\n						Read more\n					</a>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>SERVICES</h6>		\n			<h2>Unlocking Your Inner Strengths for a Fulfilling Life</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<h5>\n						One-on-One Coaching					\n				</h5>\n									<p>\n						Personalized coaching sessions tailored to the individual\'s specific goals and needs.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Group Coaching					\n				</h5>\n									<p>\n						Conducting coaching sessions in a group setting, where participants can learn from each other.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Workshops & Seminars					\n				</h5>\n									<p>\n						Offering workshops and seminars on various personal development topics such as goal setting.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Online Coaching Programs					\n				</h5>\n									<p>\n						Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.					</p>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cb43214cf6d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cb43214cf6d\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cb43214cf6d\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cb43214cf6d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cb43214cf6d\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cb43214cf6d\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cb43214cf6d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cb43214cf6d\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cb43214cf6d\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cb43214da2a\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cb43214da2a\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cb43214da2a\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cb43214da2a\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cb43214da2a\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cb43214da2a\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cb43214da2a\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cb43214da2a\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cb43214da2a\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 09:56:34','2024-02-14 04:26:34','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=117',0,'revision','',0),(118,1,'2024-02-14 09:56:35','2024-02-14 04:26:35','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who i am ?</h6>		\n			<h2>Passionate life coach dedicated to helping</h2>		\n		<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</strong></em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						5+ years experiance for life coaching					\n				</h5>\n				<h5>\n						5,5k client has proven my coaching					\n				</h5>\n		<p> Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<p>Life Coach Mentor</p>		\n			<a href=\"#\">\n						Read more\n					</a>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>SERVICES</h6>		\n			<h2>Unlocking Your Inner Strengths for a Fulfilling Life</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<h5>\n						One-on-One Coaching					\n				</h5>\n									<p>\n						Personalized coaching sessions tailored to the individual\'s specific goals and needs.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Group Coaching					\n				</h5>\n									<p>\n						Conducting coaching sessions in a group setting, where participants can learn from each other.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Workshops & Seminars					\n				</h5>\n									<p>\n						Offering workshops and seminars on various personal development topics such as goal setting.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Online Coaching Programs					\n				</h5>\n									<p>\n						Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.					</p>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc40fb01de8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc40fb01de8\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc40fb01de8\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc40fb01de8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc40fb01de8\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc40fb01de8\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc40fb01de8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc40fb01de8\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc40fb01de8\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc40fb02922\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc40fb02922\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc40fb02922\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc40fb02922\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc40fb02922\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc40fb02922\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc40fb02922\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc40fb02922\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc40fb02922\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 09:56:35','2024-02-14 04:26:35','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=118',0,'revision','',0),(120,1,'2024-02-14 10:31:29','2024-02-14 05:01:29','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who i am ?</h6>		\n			<h2>Passionate life coach dedicated to helping</h2>		\n		<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</strong></em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						5+ years experiance for life coaching					\n				</h5>\n				<h5>\n						5,5k client has proven my coaching					\n				</h5>\n		<p> Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<p>Life Coach Mentor</p>		\n			<a href=\"#\">\n						Read more\n					</a>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>SERVICES</h6>		\n			<h2>Unlocking Your Inner Strengths for a Fulfilling Life</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<h5>\n						One-on-One Coaching					\n				</h5>\n									<p>\n						Personalized coaching sessions tailored to the individual\'s specific goals and needs.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Group Coaching					\n				</h5>\n									<p>\n						Conducting coaching sessions in a group setting, where participants can learn from each other.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Workshops & Seminars					\n				</h5>\n									<p>\n						Offering workshops and seminars on various personal development topics such as goal setting.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Online Coaching Programs					\n				</h5>\n									<p>\n						Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.					</p>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc40fb01de8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc40fb01de8\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc40fb01de8\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc40fb01de8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc40fb01de8\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc40fb01de8\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc40fb01de8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc40fb01de8\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc40fb01de8\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc40fb02922\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc40fb02922\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc40fb02922\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc40fb02922\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc40fb02922\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc40fb02922\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc40fb02922\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc40fb02922\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc40fb02922\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 10:31:29','2024-02-14 05:01:29','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=120',0,'revision','',0),(121,1,'2024-02-14 10:31:29','2024-02-14 05:01:29','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who i am ?</h6>		\n			<h2>Passionate life coach dedicated to helping</h2>		\n		<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</strong></em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						5+ years experiance for life coaching					\n				</h5>\n				<h5>\n						5,5k client has proven my coaching					\n				</h5>\n		<p> Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<p>Life Coach Mentor</p>		\n			<a href=\"#\">\n						Read more\n					</a>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>SERVICES</h6>		\n			<h2>Unlocking Your Inner Strengths for a Fulfilling Life</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<h5>\n						One-on-One Coaching					\n				</h5>\n									<p>\n						Personalized coaching sessions tailored to the individual\'s specific goals and needs.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Group Coaching					\n				</h5>\n									<p>\n						Conducting coaching sessions in a group setting, where participants can learn from each other.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Workshops & Seminars					\n				</h5>\n									<p>\n						Offering workshops and seminars on various personal development topics such as goal setting.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Online Coaching Programs					\n				</h5>\n									<p>\n						Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.					</p>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc40fb01de8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc40fb01de8\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc40fb01de8\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc40fb01de8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc40fb01de8\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc40fb01de8\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc40fb01de8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc40fb01de8\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc40fb01de8\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc40fb02922\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc40fb02922\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc40fb02922\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc40fb02922\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc40fb02922\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc40fb02922\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc40fb02922\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc40fb02922\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc40fb02922\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 10:31:29','2024-02-14 05:01:29','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=121',0,'revision','',0),(122,1,'2024-02-14 10:31:29','2024-02-14 05:01:29','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</strong></em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						5+ years experiance for life coaching					\n				</h5>\n				<h5>\n						5,5k client has proven my coaching					\n				</h5>\n		<p> Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<p>Life Coach Mentor</p>		\n			<a href=\"#\">\n						Read more\n					</a>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>who i am ?</h6>		\n			<h2>Passionate life coach dedicated to helping</h2>		\n		<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</strong></em></p>		\n				<h5>\n						5+ years experiance for life coaching					\n				</h5>\n				<h5>\n						5,5k client has proven my coaching					\n				</h5>\n		<p> Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<p>Life Coach Mentor</p>		\n			<a href=\"#\">\n						Read more\n					</a>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>SERVICES</h6>		\n			<h2>Unlocking Your Inner Strengths for a Fulfilling Life</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<h5>\n						One-on-One Coaching					\n				</h5>\n									<p>\n						Personalized coaching sessions tailored to the individual\'s specific goals and needs.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Group Coaching					\n				</h5>\n									<p>\n						Conducting coaching sessions in a group setting, where participants can learn from each other.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Workshops & Seminars					\n				</h5>\n									<p>\n						Offering workshops and seminars on various personal development topics such as goal setting.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Online Coaching Programs					\n				</h5>\n									<p>\n						Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.					</p>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc49298c89d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc49298c89d\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc49298c89d\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc49298c89d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc49298c89d\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc49298c89d\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc49298c89d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc49298c89d\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc49298c89d\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc49298d33c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc49298d33c\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc49298d33c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc49298d33c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc49298d33c\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc49298d33c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc49298d33c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc49298d33c\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc49298d33c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 10:31:29','2024-02-14 05:01:29','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=122',0,'revision','',0),(124,1,'2024-02-14 11:40:08','2024-02-14 06:10:08','','Untitled design (2)','','inherit','open','closed','','untitled-design-2','','','2024-02-14 11:40:08','2024-02-14 06:10:08','',75,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp',0,'attachment','image/webp',0),(125,1,'2024-02-14 11:46:55','2024-02-14 06:16:55','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</strong></em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						5+ years experiance for life coaching					\n				</h5>\n				<h5>\n						5,5k client has proven my coaching					\n				</h5>\n		<p> Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<p>Life Coach Mentor</p>		\n			<a href=\"#\">\n						Read more\n					</a>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>who i am ?</h6>		\n			<h2>Passionate life coach dedicated to helping</h2>		\n		<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</strong></em></p>		\n				<h5>\n						5+ years experiance for life coaching					\n				</h5>\n				<h5>\n						5,5k client has proven my coaching					\n				</h5>\n		<p> Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<p>Life Coach Mentor</p>		\n			<a href=\"#\">\n						Read more\n					</a>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>SERVICES</h6>		\n			<h2>Unlocking Your Inner Strengths for a Fulfilling Life</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<h5>\n						One-on-One Coaching					\n				</h5>\n									<p>\n						Personalized coaching sessions tailored to the individual\'s specific goals and needs.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Group Coaching					\n				</h5>\n									<p>\n						Conducting coaching sessions in a group setting, where participants can learn from each other.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Workshops & Seminars					\n				</h5>\n									<p>\n						Offering workshops and seminars on various personal development topics such as goal setting.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Online Coaching Programs					\n				</h5>\n									<p>\n						Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.					</p>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc49298c89d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc49298c89d\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc49298c89d\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc49298c89d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc49298c89d\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc49298c89d\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc49298c89d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc49298c89d\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc49298c89d\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc49298d33c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc49298d33c\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc49298d33c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc49298d33c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc49298d33c\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc49298d33c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc49298d33c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc49298d33c\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc49298d33c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 11:46:55','2024-02-14 06:16:55','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=125',0,'revision','',0),(126,1,'2024-02-14 11:46:55','2024-02-14 06:16:55','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</strong></em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						5+ years experiance for life coaching					\n				</h5>\n				<h5>\n						5,5k client has proven my coaching					\n				</h5>\n		<p> Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<p>Life Coach Mentor</p>		\n			<a href=\"#\">\n						Read more\n					</a>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>who i am ?</h6>		\n			<h2>Passionate life coach dedicated to helping</h2>		\n		<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</strong></em></p>		\n				<h5>\n						5+ years experiance for life coaching					\n				</h5>\n				<h5>\n						5,5k client has proven my coaching					\n				</h5>\n		<p> Vivamus et lorem eget enim venenatis ultrices. Proin vehicula massa vel dui varius cursus. Integer nec aliquet leo, vel cursus enim. Aliquam mollis vehicula gravida. Sed sagittis erat ut ante hendrerit rhoncus.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<p>Life Coach Mentor</p>		\n			<a href=\"#\">\n						Read more\n					</a>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>SERVICES</h6>		\n			<h2>Unlocking Your Inner Strengths for a Fulfilling Life</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<h5>\n						One-on-One Coaching					\n				</h5>\n									<p>\n						Personalized coaching sessions tailored to the individual\'s specific goals and needs.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Group Coaching					\n				</h5>\n									<p>\n						Conducting coaching sessions in a group setting, where participants can learn from each other.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Workshops & Seminars					\n				</h5>\n									<p>\n						Offering workshops and seminars on various personal development topics such as goal setting.					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n				<h5>\n						Online Coaching Programs					\n				</h5>\n									<p>\n						Online Coaching Programs: Providing virtual coaching services through online platforms, such as video calls or chat platforms.					</p>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc49298c89d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc49298c89d\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc49298c89d\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc49298c89d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc49298c89d\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc49298c89d\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc49298c89d\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc49298c89d\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc49298c89d\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc49298d33c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc49298d33c\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc49298d33c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc49298d33c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc49298d33c\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc49298d33c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc49298d33c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc49298d33c\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc49298d33c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 11:46:55','2024-02-14 06:16:55','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=126',0,'revision','',0),(127,1,'2024-02-14 11:46:55','2024-02-14 06:16:55','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</strong></em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						5+ years experiance for life coaching					\n				</h5>\n				<h5>\n						5,5k client has proven my coaching					\n				</h5>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc5ad7dfdfe\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc5ad7dfdfe\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc5ad7dfdfe\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc5ad7dfdfe\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc5ad7dfdfe\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc5ad7dfdfe\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc5ad7dfdfe\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc5ad7dfdfe\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc5ad7dfdfe\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc5ad7e08be\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc5ad7e08be\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc5ad7e08be\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc5ad7e08be\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc5ad7e08be\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc5ad7e08be\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc5ad7e08be\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc5ad7e08be\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc5ad7e08be\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 11:46:55','2024-02-14 06:16:55','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=127',0,'revision','',0),(129,1,'2024-02-14 12:51:56','2024-02-14 07:21:56','','placeholder-54.png','','inherit','open','closed','','placeholder-54-png','','','2024-02-14 12:51:56','2024-02-14 07:21:56','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/placeholder-54.png',0,'attachment','image/png',0),(130,1,'2024-02-14 12:51:57','2024-02-14 07:21:57','','image-accordion-7.jpg','','inherit','open','closed','','image-accordion-7-jpg','','','2024-02-14 12:51:57','2024-02-14 07:21:57','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-7.jpg',0,'attachment','image/jpeg',0),(131,1,'2024-02-14 12:51:57','2024-02-14 07:21:57','','image-accordion-14.jpg','','inherit','open','closed','','image-accordion-14-jpg','','','2024-02-14 12:51:57','2024-02-14 07:21:57','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-14.jpg',0,'attachment','image/jpeg',0),(132,1,'2024-02-14 12:51:58','2024-02-14 07:21:58','','image-accordion-10.jpg','','inherit','open','closed','','image-accordion-10-jpg','','','2024-02-14 12:51:58','2024-02-14 07:21:58','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-10.jpg',0,'attachment','image/jpeg',0),(133,1,'2024-02-14 12:52:55','2024-02-14 07:22:55','','placeholder-292.png','','inherit','open','closed','','placeholder-292-png','','','2024-02-14 12:52:55','2024-02-14 07:22:55','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/placeholder-292.png',0,'attachment','image/png',0),(134,1,'2024-02-14 12:52:55','2024-02-14 07:22:55','','image-accordion-4.jpg','','inherit','open','closed','','image-accordion-4-jpg','','','2024-02-14 12:52:55','2024-02-14 07:22:55','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-4.jpg',0,'attachment','image/jpeg',0),(135,1,'2024-02-14 12:52:56','2024-02-14 07:22:56','','image-accordion-13.jpg','','inherit','open','closed','','image-accordion-13-jpg','','','2024-02-14 12:52:56','2024-02-14 07:22:56','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-13.jpg',0,'attachment','image/jpeg',0),(136,1,'2024-02-14 13:38:08','2024-02-14 08:08:08','','Lifespan Private Limited','','inherit','open','closed','','lifespan-private-limited','','','2024-02-14 13:38:08','2024-02-14 08:08:08','',75,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg',0,'attachment','image/jpeg',0),(137,1,'2024-02-14 13:39:29','2024-02-14 08:09:29','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</strong></em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						5+ years experiance for life coaching					\n				</h5>\n				<h5>\n						5,5k client has proven my coaching					\n				</h5>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc5ad7dfdfe\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc5ad7dfdfe\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc5ad7dfdfe\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc5ad7dfdfe\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc5ad7dfdfe\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc5ad7dfdfe\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc5ad7dfdfe\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc5ad7dfdfe\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc5ad7dfdfe\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc5ad7e08be\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc5ad7e08be\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc5ad7e08be\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc5ad7e08be\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc5ad7e08be\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc5ad7e08be\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc5ad7e08be\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc5ad7e08be\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc5ad7e08be\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 13:39:29','2024-02-14 08:09:29','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=137',0,'revision','',0),(138,1,'2024-02-14 13:39:29','2024-02-14 08:09:29','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</strong></em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						5+ years experiance for life coaching					\n				</h5>\n				<h5>\n						5,5k client has proven my coaching					\n				</h5>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc5ad7dfdfe\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc5ad7dfdfe\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc5ad7dfdfe\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc5ad7dfdfe\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc5ad7dfdfe\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc5ad7dfdfe\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc5ad7dfdfe\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc5ad7dfdfe\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc5ad7dfdfe\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc5ad7e08be\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc5ad7e08be\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc5ad7e08be\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc5ad7e08be\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc5ad7e08be\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc5ad7e08be\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc5ad7e08be\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc5ad7e08be\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc5ad7e08be\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 13:39:29','2024-02-14 08:09:29','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=138',0,'revision','',0),(139,1,'2024-02-14 13:39:30','2024-02-14 08:09:30','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products.\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"483\" height=\"460\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-10.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-10.jpg 483w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-10-300x286.jpg 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        This is the heading\n                    </h3>\n                        Trying to add add image box to your WordPress sites? No worries!                     \n                    <img width=\"483\" height=\"460\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-4.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-4.jpg 483w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-4-300x286.jpg 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        This is the heading\n                    </h3>\n                        Want to customize Elementor image box height? Here we have the Solution!                    \n                    <img width=\"483\" height=\"460\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-13.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-13.jpg 483w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-13-300x286.jpg 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        This is the heading\n                    </h3>\n                        Do you know how to add Elementor image box with button?                     \n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc753a48db8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc753a48db8\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc753a48db8\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc753a48db8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc753a48db8\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc753a48db8\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc753a48db8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc753a48db8\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc753a48db8\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc753a498c3\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc753a498c3\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc753a498c3\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc753a498c3\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc753a498c3\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc753a498c3\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc753a498c3\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc753a498c3\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc753a498c3\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 13:39:30','2024-02-14 08:09:30','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=139',0,'revision','',0),(141,1,'2024-02-14 14:39:53','2024-02-14 09:09:53','','Lifespan - manufacturing (1)','','inherit','open','closed','','lifespan-manufacturing-1','','','2024-02-14 14:39:53','2024-02-14 09:09:53','',75,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg',0,'attachment','image/jpeg',0),(142,1,'2024-02-14 14:39:54','2024-02-14 09:09:54','','Lifespan - manufacturing (2)','','inherit','open','closed','','lifespan-manufacturing-2','','','2024-02-14 14:39:54','2024-02-14 09:09:54','',75,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg',0,'attachment','image/jpeg',0),(143,1,'2024-02-14 14:39:55','2024-02-14 09:09:55','','Lifespan - manufacturing (3)','','inherit','open','closed','','lifespan-manufacturing-3','','','2024-02-14 14:39:55','2024-02-14 09:09:55','',75,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg',0,'attachment','image/jpeg',0),(144,1,'2024-02-14 15:13:04','2024-02-14 09:43:04','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products.\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"483\" height=\"460\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-10.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-10.jpg 483w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-10-300x286.jpg 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        This is the heading\n                    </h3>\n                        Trying to add add image box to your WordPress sites? No worries!                     \n                    <img width=\"483\" height=\"460\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-4.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-4.jpg 483w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-4-300x286.jpg 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        This is the heading\n                    </h3>\n                        Want to customize Elementor image box height? Here we have the Solution!                    \n                    <img width=\"483\" height=\"460\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-13.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-13.jpg 483w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-13-300x286.jpg 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        This is the heading\n                    </h3>\n                        Do you know how to add Elementor image box with button?                     \n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc753a48db8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc753a48db8\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc753a48db8\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc753a48db8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc753a48db8\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc753a48db8\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc753a48db8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc753a48db8\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc753a48db8\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc753a498c3\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc753a498c3\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc753a498c3\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc753a498c3\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc753a498c3\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc753a498c3\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc753a498c3\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc753a498c3\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc753a498c3\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 15:13:04','2024-02-14 09:43:04','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=144',0,'revision','',0),(145,1,'2024-02-14 15:13:04','2024-02-14 09:43:04','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products.\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"483\" height=\"460\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-10.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-10.jpg 483w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-10-300x286.jpg 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        This is the heading\n                    </h3>\n                        Trying to add add image box to your WordPress sites? No worries!                     \n                    <img width=\"483\" height=\"460\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-4.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-4.jpg 483w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-4-300x286.jpg 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        This is the heading\n                    </h3>\n                        Want to customize Elementor image box height? Here we have the Solution!                    \n                    <img width=\"483\" height=\"460\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-13.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-13.jpg 483w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/image-accordion-13-300x286.jpg 300w\" sizes=\"(max-width: 483px) 100vw, 483px\" />\n                                                <h3>\n                        This is the heading\n                    </h3>\n                        Do you know how to add Elementor image box with button?                     \n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc753a48db8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc753a48db8\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc753a48db8\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc753a48db8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc753a48db8\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc753a48db8\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc753a48db8\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc753a48db8\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc753a48db8\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc753a498c3\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc753a498c3\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc753a498c3\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc753a498c3\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc753a498c3\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc753a498c3\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc753a498c3\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc753a498c3\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc753a498c3\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 15:13:04','2024-02-14 09:43:04','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=145',0,'revision','',0),(146,1,'2024-02-14 15:13:05','2024-02-14 09:43:05','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing prioritise customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc8b290e937\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc8b290e937\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc8b290e937\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc8b290e937\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc8b290e937\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc8b290e937\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc8b290e937\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc8b290e937\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc8b290e937\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc8b290f464\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc8b290f464\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc8b290f464\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc8b290f464\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc8b290f464\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc8b290f464\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc8b290f464\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc8b290f464\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc8b290f464\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 15:13:05','2024-02-14 09:43:05','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=146',0,'revision','',0),(148,1,'2024-02-14 15:23:19','2024-02-14 09:53:19','','placeholder-316.png','','inherit','open','closed','','placeholder-316-png','','','2024-02-14 15:23:19','2024-02-14 09:53:19','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/placeholder-316.png',0,'attachment','image/png',0),(149,1,'2024-02-14 15:23:20','2024-02-14 09:53:20','','client_5_black.png','','inherit','open','closed','','client_5_black-png','','','2024-02-14 15:23:20','2024-02-14 09:53:20','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/client_5_black.png',0,'attachment','image/png',0),(150,1,'2024-02-14 15:23:20','2024-02-14 09:53:20','','placeholder-317.png','','inherit','open','closed','','placeholder-317-png','','','2024-02-14 15:23:20','2024-02-14 09:53:20','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/placeholder-317.png',0,'attachment','image/png',0),(151,1,'2024-02-14 15:23:22','2024-02-14 09:53:22','','client_6_black.png','','inherit','open','closed','','client_6_black-png','','','2024-02-14 15:23:22','2024-02-14 09:53:22','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/client_6_black.png',0,'attachment','image/png',0),(152,1,'2024-02-14 15:23:23','2024-02-14 09:53:23','','placeholder-318.png','','inherit','open','closed','','placeholder-318-png','','','2024-02-14 15:23:23','2024-02-14 09:53:23','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/placeholder-318.png',0,'attachment','image/png',0),(153,1,'2024-02-14 15:23:23','2024-02-14 09:53:23','','client_8_black.png','','inherit','open','closed','','client_8_black-png','','','2024-02-14 15:23:23','2024-02-14 09:53:23','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/client_8_black.png',0,'attachment','image/png',0),(154,1,'2024-02-14 15:23:24','2024-02-14 09:53:24','','placeholder-319.png','','inherit','open','closed','','placeholder-319-png','','','2024-02-14 15:23:24','2024-02-14 09:53:24','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/placeholder-319.png',0,'attachment','image/png',0),(155,1,'2024-02-14 15:23:24','2024-02-14 09:53:24','','client_4_black.png','','inherit','open','closed','','client_4_black-png','','','2024-02-14 15:23:24','2024-02-14 09:53:24','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/client_4_black.png',0,'attachment','image/png',0),(156,1,'2024-02-14 15:23:25','2024-02-14 09:53:25','','placeholder-320.png','','inherit','open','closed','','placeholder-320-png','','','2024-02-14 15:23:25','2024-02-14 09:53:25','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/placeholder-320.png',0,'attachment','image/png',0),(157,1,'2024-02-14 15:23:27','2024-02-14 09:53:27','','client_3_black.png','','inherit','open','closed','','client_3_black-png','','','2024-02-14 15:23:27','2024-02-14 09:53:27','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/client_3_black.png',0,'attachment','image/png',0),(158,1,'2024-02-14 15:23:27','2024-02-14 09:53:27','','placeholder-321.png','','inherit','open','closed','','placeholder-321-png','','','2024-02-14 15:23:27','2024-02-14 09:53:27','',0,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/placeholder-321.png',0,'attachment','image/png',0),(159,1,'2024-02-14 15:27:31','2024-02-14 09:57:31','','Lifespan Private Limited - Licenses (1)','','inherit','open','closed','','lifespan-private-limited-licenses-1','','','2024-02-14 15:27:31','2024-02-14 09:57:31','',75,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png',0,'attachment','image/png',0),(160,1,'2024-02-14 15:27:32','2024-02-14 09:57:32','','Lifespan Private Limited - Licenses (2)','','inherit','open','closed','','lifespan-private-limited-licenses-2','','','2024-02-14 15:27:32','2024-02-14 09:57:32','',75,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png',0,'attachment','image/png',0),(161,1,'2024-02-14 15:27:33','2024-02-14 09:57:33','','Lifespan Private Limited - Licenses (3)','','inherit','open','closed','','lifespan-private-limited-licenses-3','','','2024-02-14 15:27:33','2024-02-14 09:57:33','',75,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png',0,'attachment','image/png',0),(162,1,'2024-02-14 15:27:34','2024-02-14 09:57:34','','Lifespan Private Limited - Licenses (4)','','inherit','open','closed','','lifespan-private-limited-licenses-4','','','2024-02-14 15:27:34','2024-02-14 09:57:34','',75,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-4.png',0,'attachment','image/png',0),(163,1,'2024-02-14 15:27:34','2024-02-14 09:57:34','','Lifespan Private Limited - Licenses (5)','','inherit','open','closed','','lifespan-private-limited-licenses-5','','','2024-02-14 15:27:34','2024-02-14 09:57:34','',75,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png',0,'attachment','image/png',0),(164,1,'2024-02-14 15:27:36','2024-02-14 09:57:36','','Lifespan Private Limited - Licenses (6)','','inherit','open','closed','','lifespan-private-limited-licenses-6','','','2024-02-14 15:27:36','2024-02-14 09:57:36','',75,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png',0,'attachment','image/png',0),(165,1,'2024-02-14 15:27:36','2024-02-14 09:57:36','','Lifespan Private Limited - Licenses (7)','','inherit','open','closed','','lifespan-private-limited-licenses-7','','','2024-02-14 15:27:36','2024-02-14 09:57:36','',75,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png',0,'attachment','image/png',0),(166,1,'2024-02-14 15:27:38','2024-02-14 09:57:38','','Lifespan Private Limited - Licenses (8)','','inherit','open','closed','','lifespan-private-limited-licenses-8','','','2024-02-14 15:27:38','2024-02-14 09:57:38','',75,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png',0,'attachment','image/png',0),(167,1,'2024-02-14 15:27:39','2024-02-14 09:57:39','','Lifespan Private Limited - Licenses (9)','','inherit','open','closed','','lifespan-private-limited-licenses-9','','','2024-02-14 15:27:39','2024-02-14 09:57:39','',75,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png',0,'attachment','image/png',0),(168,1,'2024-02-14 15:27:40','2024-02-14 09:57:40','','Lifespan Private Limited - Licenses (10)','','inherit','open','closed','','lifespan-private-limited-licenses-10','','','2024-02-14 15:27:40','2024-02-14 09:57:40','',75,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png',0,'attachment','image/png',0),(169,1,'2024-02-14 15:27:41','2024-02-14 09:57:41','','Lifespan Private Limited - Licenses (11)','','inherit','open','closed','','lifespan-private-limited-licenses-11','','','2024-02-14 15:27:41','2024-02-14 09:57:41','',75,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png',0,'attachment','image/png',0),(170,1,'2024-02-14 15:49:37','2024-02-14 10:19:37','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing prioritise customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc8b290e937\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc8b290e937\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc8b290e937\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc8b290e937\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc8b290e937\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc8b290e937\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc8b290e937\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc8b290e937\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc8b290e937\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc8b290f464\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc8b290f464\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc8b290f464\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc8b290f464\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc8b290f464\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc8b290f464\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc8b290f464\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc8b290f464\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc8b290f464\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 15:49:37','2024-02-14 10:19:37','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=170',0,'revision','',0),(171,1,'2024-02-14 15:49:37','2024-02-14 10:19:37','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing prioritise customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc8b290e937\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc8b290e937\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc8b290e937\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc8b290e937\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc8b290e937\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc8b290e937\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc8b290e937\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc8b290e937\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc8b290e937\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc8b290f464\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc8b290f464\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc8b290f464\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc8b290f464\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc8b290f464\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc8b290f464\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc8b290f464\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc8b290f464\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc8b290f464\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 15:49:37','2024-02-14 10:19:37','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=171',0,'revision','',0),(172,1,'2024-02-14 15:49:37','2024-02-14 10:19:37','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h2>Client Logo with Thick Border Effects 2</h2>				\n					<p>Present your logo carousel slider with the thick border and turn it into gradient color</p>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc93b9982db\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc93b9982db\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc93b9982db\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc93b9982db\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc93b9982db\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc93b9982db\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc93b9982db\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc93b9982db\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc93b9982db\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc93b999e05\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc93b999e05\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc93b999e05\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc93b999e05\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc93b999e05\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc93b999e05\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc93b999e05\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc93b999e05\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc93b999e05\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 15:49:37','2024-02-14 10:19:37','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=172',0,'revision','',0),(173,1,'2024-02-14 16:13:03','2024-02-14 10:43:03','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h2>Client Logo with Thick Border Effects 2</h2>				\n					<p>Present your logo carousel slider with the thick border and turn it into gradient color</p>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc93b9982db\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc93b9982db\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc93b9982db\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc93b9982db\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc93b9982db\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc93b9982db\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc93b9982db\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc93b9982db\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc93b9982db\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc93b999e05\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc93b999e05\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc93b999e05\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc93b999e05\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc93b999e05\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc93b999e05\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc93b999e05\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc93b999e05\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc93b999e05\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 16:13:03','2024-02-14 10:43:03','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=173',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (174,1,'2024-02-14 16:13:04','2024-02-14 10:43:04','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h2>Client Logo with Thick Border Effects 2</h2>				\n					<p>Present your logo carousel slider with the thick border and turn it into gradient color</p>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc93b9982db\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc93b9982db\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc93b9982db\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc93b9982db\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc93b9982db\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc93b9982db\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc93b9982db\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc93b9982db\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc93b9982db\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc93b999e05\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc93b999e05\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc93b999e05\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc93b999e05\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc93b999e05\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc93b999e05\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc93b999e05\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc93b999e05\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc93b999e05\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 16:13:04','2024-02-14 10:43:04','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=174',0,'revision','',0),(175,1,'2024-02-14 16:13:04','2024-02-14 10:43:04','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc993853c5c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc993853c5c\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc993853c5c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc993853c5c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc993853c5c\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc993853c5c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc993853c5c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc993853c5c\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc993853c5c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc993854733\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc993854733\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc993854733\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc993854733\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc993854733\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc993854733\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc993854733\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc993854733\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc993854733\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 16:13:04','2024-02-14 10:43:04','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=175',0,'revision','',0),(176,1,'2024-02-14 17:34:29','2024-02-14 12:04:29','','Untitled design (3)','','inherit','open','closed','','untitled-design-3','','','2024-02-14 17:34:29','2024-02-14 12:04:29','',75,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-3.jpg',0,'attachment','image/jpeg',0),(177,1,'2024-02-14 17:36:04','2024-02-14 12:06:04','','Untitled design (4)','','inherit','open','closed','','untitled-design-4','','','2024-02-14 17:36:04','2024-02-14 12:06:04','',75,'https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-4.png',0,'attachment','image/png',0),(179,1,'2024-02-14 17:44:15','2024-02-14 12:14:15','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc993853c5c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc993853c5c\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc993853c5c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc993853c5c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc993853c5c\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc993853c5c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc993853c5c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc993853c5c\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc993853c5c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc993854733\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc993854733\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc993854733\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc993854733\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc993854733\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc993854733\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc993854733\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc993854733\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc993854733\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 17:44:15','2024-02-14 12:14:15','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=179',0,'revision','',0),(180,1,'2024-02-14 17:44:15','2024-02-14 12:14:15','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cc993853c5c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc993853c5c\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc993853c5c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc993853c5c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc993853c5c\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc993853c5c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc993853c5c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc993853c5c\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc993853c5c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cc993854733\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cc993854733\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cc993854733\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cc993854733\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cc993854733\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cc993854733\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cc993854733\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cc993854733\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cc993854733\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 17:44:15','2024-02-14 12:14:15','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=180',0,'revision','',0),(181,1,'2024-02-14 17:44:16','2024-02-14 12:14:16','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65ccae980b6ee\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65ccae980b6ee\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65ccae980b6ee\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465ccae980b6ee\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465ccae980b6ee\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465ccae980b6ee\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665ccae980b6ee\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665ccae980b6ee\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665ccae980b6ee\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65ccae980c252\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65ccae980c252\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65ccae980c252\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465ccae980c252\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465ccae980c252\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465ccae980c252\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665ccae980c252\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665ccae980c252\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665ccae980c252\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-14 17:44:16','2024-02-14 12:14:16','',75,'https://ls-narendraram.in8.cdn-alpha.com/?p=181',0,'revision','',0),(182,1,'2024-02-15 09:36:09','2024-02-15 04:06:09','<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"1280\" height=\"536\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp 1280w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-300x126.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-1024x429.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-768x322.webp 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />													\n			<h2>LIFESPAN SUPER SPECIALITY HOSPITALS</h2>				\n					<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.</p>\n<p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Personalized Care Plans                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Total Healthcare Solution                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    State of the Art Technology                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Fast Track Appointments                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Comprehensive Wellness Programs                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Community Outreach Programs                </h3>\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-768x512.webp 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies.webp 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n			<h2>LIFESPAN PHARMACIES</h2>				\n					<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.</p>\n<p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.</p>\n<p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.</p>\n			<h2>SPORTS ENTREPRENEURSHIP</h2>		\n													<img width=\"800\" height=\"334\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-300x125.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-768x320.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        WINNER OF DPCL FIRST SEASON\n                    </h3>\n                        We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.                    \n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        PROUD OWNER OF VIZAG WARRIORS\n                    </h3>\n                        N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.','Home trial','','publish','closed','closed','','home-trial','','','2024-03-06 13:37:00','2024-03-06 08:07:00','',0,'https://narendraram.com/?page_id=182',0,'page','',0),(183,1,'2024-02-15 09:36:09','2024-02-15 04:06:09','','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-15 09:36:09','2024-02-15 04:06:09','',182,'https://narendraram.com/?p=183',0,'revision','',0),(185,1,'2024-02-15 09:42:41','2024-02-15 04:12:41','','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-15 09:42:41','2024-02-15 04:12:41','',182,'https://narendraram.com/?p=185',0,'revision','',0),(186,1,'2024-02-15 09:42:41','2024-02-15 04:12:41','','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-15 09:42:41','2024-02-15 04:12:41','',182,'https://narendraram.com/?p=186',0,'revision','',0),(187,1,'2024-02-15 09:42:42','2024-02-15 04:12:42','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-15 09:42:42','2024-02-15 04:12:42','',182,'https://narendraram.com/?p=187',0,'revision','',0),(188,1,'2024-02-15 09:54:27','2024-02-15 04:24:27','','Narendra Ram (1)','','inherit','open','closed','','narendra-ram-1','','','2024-02-15 09:54:27','2024-02-15 04:24:27','',13,'https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-1.png',0,'attachment','image/png',0),(189,1,'2024-02-15 09:55:46','2024-02-15 04:25:46','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1.png 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-98\" data-vertical-menu=750px><a href=\"http://f\">Manufacturing Nutraceutical</a></li>\n<li id=\"menu-item-99\" data-vertical-menu=750px><a href=\"http://e\">Hospital &#038; Pharmacies</a></li>\n<li id=\"menu-item-100\" data-vertical-menu=750px><a href=\"http://1\">Sports</a></li>\n<li id=\"menu-item-101\" data-vertical-menu=750px><a href=\"http://aa\">Power Politics</a></li>\n<li id=\"menu-item-102\" data-vertical-menu=750px><a href=\"http://f\">Feel Foundation</a></li>\n<li id=\"menu-item-103\" data-vertical-menu=750px><a href=\"http://m\">Memberships</a></li>\n<li id=\"menu-item-104\" data-vertical-menu=750px><a href=\"http://3\">Recognition</a></li>\n<li id=\"menu-item-105\" data-vertical-menu=750px><a href=\"http://s\">Awards</a></li>\n<li id=\"menu-item-106\" data-vertical-menu=750px><a href=\"http://d\">Certificates</a></li>\n</ul><button type=\"button\">X</button>			\n			<a href=\"#\">\n						Get Connect\n					</a>','Header','','inherit','closed','closed','','13-revision-v1','','','2024-02-15 09:55:46','2024-02-15 04:25:46','',13,'https://narendraram.com/?p=189',0,'revision','',0),(190,1,'2024-02-15 09:55:46','2024-02-15 04:25:46','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1.png 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-1-1-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-98\" data-vertical-menu=750px><a href=\"http://f\">Manufacturing Nutraceutical</a></li>\n<li id=\"menu-item-99\" data-vertical-menu=750px><a href=\"http://e\">Hospital &#038; Pharmacies</a></li>\n<li id=\"menu-item-100\" data-vertical-menu=750px><a href=\"http://1\">Sports</a></li>\n<li id=\"menu-item-101\" data-vertical-menu=750px><a href=\"http://aa\">Power Politics</a></li>\n<li id=\"menu-item-102\" data-vertical-menu=750px><a href=\"http://f\">Feel Foundation</a></li>\n<li id=\"menu-item-103\" data-vertical-menu=750px><a href=\"http://m\">Memberships</a></li>\n<li id=\"menu-item-104\" data-vertical-menu=750px><a href=\"http://3\">Recognition</a></li>\n<li id=\"menu-item-105\" data-vertical-menu=750px><a href=\"http://s\">Awards</a></li>\n<li id=\"menu-item-106\" data-vertical-menu=750px><a href=\"http://d\">Certificates</a></li>\n</ul><button type=\"button\">X</button>			\n			<a href=\"#\">\n						Get Connect\n					</a>','Header','','inherit','closed','closed','','13-revision-v1','','','2024-02-15 09:55:46','2024-02-15 04:25:46','',13,'https://narendraram.com/?p=190',0,'revision','',0),(191,1,'2024-02-15 09:55:46','2024-02-15 04:25:46','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-1.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-1-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-98\" data-vertical-menu=750px><a href=\"http://f\">Manufacturing Nutraceutical</a></li>\n<li id=\"menu-item-99\" data-vertical-menu=750px><a href=\"http://e\">Hospital &#038; Pharmacies</a></li>\n<li id=\"menu-item-100\" data-vertical-menu=750px><a href=\"http://1\">Sports</a></li>\n<li id=\"menu-item-101\" data-vertical-menu=750px><a href=\"http://aa\">Power Politics</a></li>\n<li id=\"menu-item-102\" data-vertical-menu=750px><a href=\"http://f\">Feel Foundation</a></li>\n<li id=\"menu-item-103\" data-vertical-menu=750px><a href=\"http://m\">Memberships</a></li>\n<li id=\"menu-item-104\" data-vertical-menu=750px><a href=\"http://3\">Recognition</a></li>\n<li id=\"menu-item-105\" data-vertical-menu=750px><a href=\"http://s\">Awards</a></li>\n<li id=\"menu-item-106\" data-vertical-menu=750px><a href=\"http://d\">Certificates</a></li>\n</ul><button type=\"button\">X</button>			\n			<a href=\"#\">\n						Get Connect\n					</a>','Header','','inherit','closed','closed','','13-revision-v1','','','2024-02-15 09:55:46','2024-02-15 04:25:46','',13,'https://narendraram.com/?p=191',0,'revision','',0),(193,1,'2024-02-15 10:23:02','2024-02-15 04:53:02','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><strong>A Versatile Tycoon, </strong><strong>Proficient in Diverse Realms</strong></p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Philanthropist, Health &amp; Wellness, Sports Entrepreneur. </p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Courses</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Foundations of Life Coaching\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Goal Setting & Action Planning\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Effective Communication\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Transforming Mindset\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Building Resilience & Stress Management\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Launching Your Life Coaching Business\n											</a>\n									</li>\n						</ul>\n			<h5>quick links</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											About Me\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Courses\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											FAQ\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Policies\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n			<p>Copyright © 2024, All rights reserved.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-15 10:23:02','2024-02-15 04:53:02','',65,'https://narendraram.com/?p=193',0,'revision','',0),(194,1,'2024-02-15 10:23:02','2024-02-15 04:53:02','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><strong>A Versatile Tycoon, </strong><strong>Proficient in Diverse Realms</strong></p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Philanthropist, Health &amp; Wellness, Sports Entrepreneur. </p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Courses</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Foundations of Life Coaching\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Goal Setting & Action Planning\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Effective Communication\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Transforming Mindset\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Building Resilience & Stress Management\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Launching Your Life Coaching Business\n											</a>\n									</li>\n						</ul>\n			<h5>quick links</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											About Me\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Courses\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											FAQ\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Policies\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.28c-30.8 0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n						<svg viewBox=\"0 0 512 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Youtube\n						<svg viewBox=\"0 0 576 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z\"></path></svg>					</a>\n			<p>Copyright © 2024, All rights reserved.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-15 10:23:02','2024-02-15 04:53:02','',65,'https://narendraram.com/?p=194',0,'revision','',0),(195,1,'2024-02-15 10:23:02','2024-02-15 04:53:02','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><strong>A Versatile Tycoon, </strong><strong>Proficient in Diverse Realms</strong></p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur. </p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Business Realms</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Manufacturing Nutraceutical\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Hospital & Pharmacies\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Sports\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Power Politics\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Feel Foundation\n											</a>\n									</li>\n						</ul>\n			<h5>Accolades</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Memberships\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Recognitions\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Awards\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Certificates\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.linkedin.com/in/narendraram/\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n						<svg viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"></path></svg>					</a>\n			<p>Copyright © 2024, All rights reserved.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-15 10:23:02','2024-02-15 04:53:02','',65,'https://narendraram.com/?p=195',0,'revision','',0),(196,1,'2024-02-15 10:27:39','2024-02-15 04:57:39','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-1.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-1-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-98\" data-vertical-menu=750px><a href=\"http://f\">Manufacturing Nutraceutical</a></li>\n<li id=\"menu-item-99\" data-vertical-menu=750px><a href=\"http://e\">Hospital &#038; Pharmacies</a></li>\n<li id=\"menu-item-100\" data-vertical-menu=750px><a href=\"http://1\">Sports</a></li>\n<li id=\"menu-item-101\" data-vertical-menu=750px><a href=\"http://aa\">Power Politics</a></li>\n<li id=\"menu-item-102\" data-vertical-menu=750px><a href=\"http://f\">Feel Foundation</a></li>\n<li id=\"menu-item-103\" data-vertical-menu=750px><a href=\"http://m\">Memberships</a></li>\n<li id=\"menu-item-104\" data-vertical-menu=750px><a href=\"http://3\">Recognition</a></li>\n<li id=\"menu-item-105\" data-vertical-menu=750px><a href=\"http://s\">Awards</a></li>\n<li id=\"menu-item-106\" data-vertical-menu=750px><a href=\"http://d\">Certificates</a></li>\n</ul><button type=\"button\">X</button>			\n			<a href=\"#\">\n						Get Connect\n					</a>','Header','','inherit','closed','closed','','13-revision-v1','','','2024-02-15 10:27:39','2024-02-15 04:57:39','',13,'https://narendraram.com/?p=196',0,'revision','',0),(197,1,'2024-02-15 10:27:39','2024-02-15 04:57:39','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-1.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-1-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-98\" data-vertical-menu=750px><a href=\"http://f\">Manufacturing Nutraceutical</a></li>\n<li id=\"menu-item-99\" data-vertical-menu=750px><a href=\"http://e\">Hospital &#038; Pharmacies</a></li>\n<li id=\"menu-item-100\" data-vertical-menu=750px><a href=\"http://1\">Sports</a></li>\n<li id=\"menu-item-101\" data-vertical-menu=750px><a href=\"http://aa\">Power Politics</a></li>\n<li id=\"menu-item-102\" data-vertical-menu=750px><a href=\"http://f\">Feel Foundation</a></li>\n<li id=\"menu-item-103\" data-vertical-menu=750px><a href=\"http://m\">Memberships</a></li>\n<li id=\"menu-item-104\" data-vertical-menu=750px><a href=\"http://3\">Recognition</a></li>\n<li id=\"menu-item-105\" data-vertical-menu=750px><a href=\"http://s\">Awards</a></li>\n<li id=\"menu-item-106\" data-vertical-menu=750px><a href=\"http://d\">Certificates</a></li>\n</ul><button type=\"button\">X</button>			\n			<a href=\"#\">\n						Get Connect\n					</a>','Header','','inherit','closed','closed','','13-revision-v1','','','2024-02-15 10:27:39','2024-02-15 04:57:39','',13,'https://narendraram.com/?p=197',0,'revision','',0),(198,1,'2024-02-15 10:27:39','2024-02-15 04:57:39','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-1.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-1-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			            <button  type=\"button\" aria-label=\"hamburger-icon\">\n                            </button>\n            <ul id=\"menu-main-menu\"><li id=\"menu-item-98\" data-vertical-menu=750px><a href=\"http://f\">Manufacturing Nutraceutical</a></li>\n<li id=\"menu-item-99\" data-vertical-menu=750px><a href=\"http://e\">Hospital &#038; Pharmacies</a></li>\n<li id=\"menu-item-100\" data-vertical-menu=750px><a href=\"http://1\">Sports</a></li>\n<li id=\"menu-item-101\" data-vertical-menu=750px><a href=\"http://aa\">Power Politics</a></li>\n<li id=\"menu-item-102\" data-vertical-menu=750px><a href=\"http://f\">Feel Foundation</a></li>\n<li id=\"menu-item-103\" data-vertical-menu=750px><a href=\"http://m\">Memberships</a></li>\n<li id=\"menu-item-104\" data-vertical-menu=750px><a href=\"http://3\">Recognition</a></li>\n<li id=\"menu-item-105\" data-vertical-menu=750px><a href=\"http://s\">Awards</a></li>\n<li id=\"menu-item-106\" data-vertical-menu=750px><a href=\"http://d\">Certificates</a></li>\n</ul><button type=\"button\">X</button>			\n			<a href=\"mailto:cmd@lifespan.industries\">\n						Connect\n					</a>','Header','','inherit','closed','closed','','13-revision-v1','','','2024-02-15 10:27:39','2024-02-15 04:57:39','',13,'https://narendraram.com/?p=198',0,'revision','',0),(199,1,'2024-02-15 10:29:26','2024-02-15 04:59:26','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65ccae980b6ee\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65ccae980b6ee\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65ccae980b6ee\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465ccae980b6ee\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465ccae980b6ee\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465ccae980b6ee\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665ccae980b6ee\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665ccae980b6ee\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665ccae980b6ee\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65ccae980c252\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65ccae980c252\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65ccae980c252\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465ccae980c252\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465ccae980c252\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465ccae980c252\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665ccae980c252\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665ccae980c252\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665ccae980c252\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-15 10:29:26','2024-02-15 04:59:26','',75,'https://narendraram.com/?p=199',0,'revision','',0),(200,1,'2024-02-15 10:29:26','2024-02-15 04:59:26','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3RhbGstYWZ0ZXItc2VtaW5hci0yMDIxLTA5LTI0LTAzLTM0LTQyLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NvbmZlcmVuY2Utc2VtaW5hci1tZWV0aW5nLXJvb20tMjAyMi0wNi0xNS0yMy01Mi00NS11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2J1c2luZXNzLXBlb3BsZS1kdXJpbmctdGhlLWNvbmZlcmVuY2UtaW4tdGhlLWF1ZGllLTIwMjEtMTItMjctMjMtMjgtNTAtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL3Nob3Qtb2YtYS1ncm91cC1vZi1idXNpbmVzc3Blb3BsZS1hdHRlbmRpbmctYS1jb25mLTIwMjItMDktMTQtMDEtMjgtMzktdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2F1ZGllbmNlLWFwcGxhdWRpbmctYXQtc2VtaW5hci5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9scy1uYXJlbmRyYXJhbS5pbjguY2RuLWFscGhhLmNvbVwvd3AtY29udGVudFwvdXBsb2Fkc1wvMjAyNFwvMDJcL2NhcmQtbW9ja3VwLWluLXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65ccae980b6ee\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65ccae980b6ee\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65ccae980b6ee\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465ccae980b6ee\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465ccae980b6ee\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465ccae980b6ee\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665ccae980b6ee\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665ccae980b6ee\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665ccae980b6ee\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65ccae980c252\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65ccae980c252\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65ccae980c252\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465ccae980c252\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465ccae980c252\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465ccae980c252\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665ccae980c252\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665ccae980c252\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665ccae980c252\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://ls-narendraram.in8.cdn-alpha.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://ls-narendraram.in8.cdn-alpha.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-15 10:29:26','2024-02-15 04:59:26','',75,'https://narendraram.com/?p=200',0,'revision','',0),(201,1,'2024-02-15 10:29:27','2024-02-15 04:59:27','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cd9a2f068de\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cd9a2f068de\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cd9a2f068de\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cd9a2f068de\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cd9a2f068de\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cd9a2f068de\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cd9a2f068de\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cd9a2f068de\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cd9a2f068de\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cd9a2f0836b\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cd9a2f0836b\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cd9a2f0836b\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cd9a2f0836b\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cd9a2f0836b\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cd9a2f0836b\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cd9a2f0836b\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cd9a2f0836b\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cd9a2f0836b\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-15 10:29:27','2024-02-15 04:59:27','',75,'https://narendraram.com/?p=201',0,'revision','',0),(203,1,'2024-02-15 10:51:58','2024-02-15 05:21:58','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cd9a2f068de\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cd9a2f068de\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cd9a2f068de\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cd9a2f068de\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cd9a2f068de\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cd9a2f068de\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cd9a2f068de\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cd9a2f068de\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cd9a2f068de\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cd9a2f0836b\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cd9a2f0836b\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cd9a2f0836b\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cd9a2f0836b\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cd9a2f0836b\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cd9a2f0836b\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cd9a2f0836b\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cd9a2f0836b\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cd9a2f0836b\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-15 10:51:58','2024-02-15 05:21:58','',75,'https://narendraram.com/?p=203',0,'revision','',0),(204,1,'2024-02-15 10:51:58','2024-02-15 05:21:58','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cd9a2f068de\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cd9a2f068de\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cd9a2f068de\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cd9a2f068de\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cd9a2f068de\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cd9a2f068de\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cd9a2f068de\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cd9a2f068de\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cd9a2f068de\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cd9a2f0836b\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cd9a2f0836b\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cd9a2f0836b\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cd9a2f0836b\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cd9a2f0836b\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cd9a2f0836b\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cd9a2f0836b\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cd9a2f0836b\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cd9a2f0836b\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-15 10:51:58','2024-02-15 05:21:58','',75,'https://narendraram.com/?p=204',0,'revision','',0),(205,1,'2024-02-15 10:51:59','2024-02-15 05:21:59','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cd9f771ef77\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cd9f771ef77\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cd9f771ef77\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cd9f771ef77\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cd9f771ef77\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cd9f771ef77\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cd9f771ef77\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cd9f771ef77\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cd9f771ef77\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cd9f771fa4e\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cd9f771fa4e\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cd9f771fa4e\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cd9f771fa4e\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cd9f771fa4e\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cd9f771fa4e\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cd9f771fa4e\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cd9f771fa4e\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cd9f771fa4e\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-15 10:51:59','2024-02-15 05:21:59','',75,'https://narendraram.com/?p=205',0,'revision','',0),(206,1,'2024-02-15 10:53:05','2024-02-15 05:23:05','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><strong>A Versatile Tycoon, </strong><strong>Proficient in Diverse Realms</strong></p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur. </p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Business Realms</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Manufacturing Nutraceutical\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Hospital & Pharmacies\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Sports\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Power Politics\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Feel Foundation\n											</a>\n									</li>\n						</ul>\n			<h5>Accolades</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Memberships\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Recognitions\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Awards\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Certificates\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.linkedin.com/in/narendraram/\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n						<svg viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"></path></svg>					</a>\n			<p>Copyright © 2024, All rights reserved.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-15 10:53:05','2024-02-15 05:23:05','',65,'https://narendraram.com/?p=206',0,'revision','',0),(207,1,'2024-02-15 10:53:05','2024-02-15 05:23:05','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><strong>A Versatile Tycoon, </strong><strong>Proficient in Diverse Realms</strong></p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur. </p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Business Realms</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Manufacturing Nutraceutical\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Hospital & Pharmacies\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Sports\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Power Politics\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Feel Foundation\n											</a>\n									</li>\n						</ul>\n			<h5>Accolades</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Memberships\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Recognitions\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Awards\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Certificates\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.linkedin.com/in/narendraram/\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n						<svg viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"></path></svg>					</a>\n			<p>Copyright © 2024, All rights reserved.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-15 10:53:05','2024-02-15 05:23:05','',65,'https://narendraram.com/?p=207',0,'revision','',0),(208,1,'2024-02-15 10:53:05','2024-02-15 05:23:05','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><strong>A Versatile Tycoon, </strong><strong>Proficient in Diverse Realms</strong></p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur. </p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Business Realms</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Manufacturing Nutraceutical\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Hospital & Pharmacies\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Sports\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Power Politics\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Feel Foundation\n											</a>\n									</li>\n						</ul>\n			<h5>Accolades</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Memberships\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Recognitions\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Awards\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Certificates\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.linkedin.com/in/narendraram/\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n						<svg viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"></path></svg>					</a>\n			<p>Copyright © 2024, All rights reserved.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-15 10:53:05','2024-02-15 05:23:05','',65,'https://narendraram.com/?p=208',0,'revision','',0),(209,1,'2024-02-15 10:53:30','2024-02-15 05:23:30','','Kit Styles: Triump - Life Coach & Motivator Elementor Template Kit','','inherit','closed','closed','','27-revision-v1','','','2024-02-15 10:53:30','2024-02-15 05:23:30','',27,'https://narendraram.com/?p=209',0,'revision','',0),(211,1,'2024-02-15 10:57:48','2024-02-15 05:27:48','','Narendra Ram favicon','','inherit','open','closed','','narendra-ram-favicon','','','2024-02-15 10:57:48','2024-02-15 05:27:48','',27,'https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-favicon.png',0,'attachment','image/png',0),(212,1,'2024-02-15 10:57:57','2024-02-15 05:27:57','','Kit Styles: Triump - Life Coach & Motivator Elementor Template Kit','','inherit','closed','closed','','27-revision-v1','','','2024-02-15 10:57:57','2024-02-15 05:27:57','',27,'https://narendraram.com/?p=212',0,'revision','',0),(214,1,'2024-02-15 12:34:05','2024-02-15 07:04:05','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cd9f771ef77\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cd9f771ef77\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cd9f771ef77\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cd9f771ef77\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cd9f771ef77\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cd9f771ef77\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cd9f771ef77\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cd9f771ef77\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cd9f771ef77\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cd9f771fa4e\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cd9f771fa4e\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cd9f771fa4e\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cd9f771fa4e\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cd9f771fa4e\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cd9f771fa4e\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cd9f771fa4e\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cd9f771fa4e\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cd9f771fa4e\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-15 12:34:05','2024-02-15 07:04:05','',75,'https://narendraram.com/?p=214',0,'revision','',0),(215,1,'2024-02-15 12:34:05','2024-02-15 07:04:05','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cd9f771ef77\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cd9f771ef77\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cd9f771ef77\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cd9f771ef77\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cd9f771ef77\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cd9f771ef77\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cd9f771ef77\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cd9f771ef77\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cd9f771ef77\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cd9f771fa4e\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cd9f771fa4e\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cd9f771fa4e\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cd9f771fa4e\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cd9f771fa4e\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cd9f771fa4e\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cd9f771fa4e\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cd9f771fa4e\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cd9f771fa4e\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-15 12:34:05','2024-02-15 07:04:05','',75,'https://narendraram.com/?p=215',0,'revision','',0),(216,1,'2024-02-15 12:34:05','2024-02-15 07:04:05','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cdb7659028c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb7659028c\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb7659028c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb7659028c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb7659028c\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb7659028c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb7659028c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb7659028c\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb7659028c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cdb76590d23\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb76590d23\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb76590d23\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb76590d23\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb76590d23\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb76590d23\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb76590d23\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb76590d23\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb76590d23\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-15 12:34:05','2024-02-15 07:04:05','',75,'https://narendraram.com/?p=216',0,'revision','',0),(217,1,'2024-02-15 12:36:25','2024-02-15 07:06:25','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cdb7659028c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb7659028c\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb7659028c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb7659028c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb7659028c\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb7659028c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb7659028c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb7659028c\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb7659028c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cdb76590d23\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb76590d23\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb76590d23\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb76590d23\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb76590d23\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb76590d23\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb76590d23\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb76590d23\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb76590d23\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-15 12:36:25','2024-02-15 07:06:25','',75,'https://narendraram.com/?p=217',0,'revision','',0),(218,1,'2024-02-15 12:36:25','2024-02-15 07:06:25','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cdb7659028c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb7659028c\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb7659028c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb7659028c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb7659028c\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb7659028c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb7659028c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb7659028c\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb7659028c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cdb76590d23\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb76590d23\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb76590d23\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb76590d23\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb76590d23\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb76590d23\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb76590d23\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb76590d23\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb76590d23\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-15 12:36:25','2024-02-15 07:06:25','',75,'https://narendraram.com/?p=218',0,'revision','',0),(219,1,'2024-02-15 12:36:26','2024-02-15 07:06:26','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cdb7f207379\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb7f207379\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb7f207379\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb7f207379\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb7f207379\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb7f207379\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb7f207379\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb7f207379\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb7f207379\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cdb7f207e2c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb7f207e2c\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb7f207e2c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb7f207e2c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb7f207e2c\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb7f207e2c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb7f207e2c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb7f207e2c\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb7f207e2c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-15 12:36:26','2024-02-15 07:06:26','',75,'https://narendraram.com/?p=219',0,'revision','',0),(220,1,'2024-02-15 12:38:17','2024-02-15 07:08:17','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cdb7f207379\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb7f207379\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb7f207379\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb7f207379\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb7f207379\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb7f207379\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb7f207379\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb7f207379\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb7f207379\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cdb7f207e2c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb7f207e2c\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb7f207e2c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb7f207e2c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb7f207e2c\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb7f207e2c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb7f207e2c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb7f207e2c\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb7f207e2c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-15 12:38:17','2024-02-15 07:08:17','',75,'https://narendraram.com/?p=220',0,'revision','',0),(221,1,'2024-02-15 12:38:17','2024-02-15 07:08:17','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cdb7f207379\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb7f207379\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb7f207379\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb7f207379\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb7f207379\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb7f207379\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb7f207379\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb7f207379\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb7f207379\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cdb7f207e2c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb7f207e2c\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb7f207e2c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb7f207e2c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb7f207e2c\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb7f207e2c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb7f207e2c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb7f207e2c\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb7f207e2c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-15 12:38:17','2024-02-15 07:08:17','',75,'https://narendraram.com/?p=221',0,'revision','',0),(222,1,'2024-02-15 12:38:17','2024-02-15 07:08:17','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cdb861dfaad\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb861dfaad\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb861dfaad\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb861dfaad\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb861dfaad\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb861dfaad\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb861dfaad\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb861dfaad\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb861dfaad\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cdb861e055f\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb861e055f\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb861e055f\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb861e055f\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb861e055f\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb861e055f\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb861e055f\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb861e055f\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb861e055f\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-15 12:38:17','2024-02-15 07:08:17','',75,'https://narendraram.com/?p=222',0,'revision','',0),(223,1,'2024-02-15 12:40:03','2024-02-15 07:10:03','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cdb861dfaad\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb861dfaad\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb861dfaad\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb861dfaad\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb861dfaad\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb861dfaad\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb861dfaad\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb861dfaad\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb861dfaad\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cdb861e055f\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb861e055f\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb861e055f\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb861e055f\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb861e055f\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb861e055f\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb861e055f\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb861e055f\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb861e055f\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-15 12:40:03','2024-02-15 07:10:03','',75,'https://narendraram.com/?p=223',0,'revision','',0),(224,1,'2024-02-15 12:40:03','2024-02-15 07:10:03','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cdb861dfaad\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb861dfaad\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb861dfaad\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb861dfaad\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb861dfaad\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb861dfaad\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb861dfaad\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb861dfaad\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb861dfaad\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cdb861e055f\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb861e055f\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb861e055f\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb861e055f\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb861e055f\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb861e055f\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb861e055f\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb861e055f\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb861e055f\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-15 12:40:03','2024-02-15 07:10:03','',75,'https://narendraram.com/?p=224',0,'revision','',0),(225,1,'2024-02-15 12:40:04','2024-02-15 07:10:04','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\" more=\"\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cdb8cc22cab\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb8cc22cab\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb8cc22cab\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb8cc22cab\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb8cc22cab\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb8cc22cab\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb8cc22cab\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb8cc22cab\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb8cc22cab\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cdb8cc237a5\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb8cc237a5\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb8cc237a5\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb8cc237a5\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb8cc237a5\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb8cc237a5\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb8cc237a5\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb8cc237a5\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb8cc237a5\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-02-15 12:40:04','2024-02-15 07:10:04','',75,'https://narendraram.com/?p=225',0,'revision','',0),(227,1,'2024-02-15 12:45:57','2024-02-15 07:15:57','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-15 12:45:57','2024-02-15 07:15:57','',182,'https://narendraram.com/?p=227',0,'revision','',0),(228,1,'2024-02-15 12:45:57','2024-02-15 07:15:57','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-15 12:45:57','2024-02-15 07:15:57','',182,'https://narendraram.com/?p=228',0,'revision','',0),(229,1,'2024-02-15 12:45:58','2024-02-15 07:15:58','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-15 12:45:58','2024-02-15 07:15:58','',182,'https://narendraram.com/?p=229',0,'revision','',0),(230,1,'2024-02-15 12:46:10','2024-02-15 07:16:10','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-15 12:46:10','2024-02-15 07:16:10','',182,'https://narendraram.com/?p=230',0,'revision','',0),(231,1,'2024-02-15 12:46:10','2024-02-15 07:16:10','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-15 12:46:10','2024-02-15 07:16:10','',182,'https://narendraram.com/?p=231',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (232,1,'2024-02-15 12:46:10','2024-02-15 07:16:10','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-15 12:46:10','2024-02-15 07:16:10','',182,'https://narendraram.com/?p=232',0,'revision','',0),(233,1,'2024-02-15 12:46:31','2024-02-15 07:16:31','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-15 12:46:31','2024-02-15 07:16:31','',182,'https://narendraram.com/?p=233',0,'revision','',0),(234,1,'2024-02-15 12:46:31','2024-02-15 07:16:31','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-15 12:46:31','2024-02-15 07:16:31','',182,'https://narendraram.com/?p=234',0,'revision','',0),(235,1,'2024-02-15 12:46:31','2024-02-15 07:16:31','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-15 12:46:31','2024-02-15 07:16:31','',182,'https://narendraram.com/?p=235',0,'revision','',0),(236,1,'2024-02-15 12:47:03','2024-02-15 07:17:03','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-15 12:47:03','2024-02-15 07:17:03','',182,'https://narendraram.com/?p=236',0,'revision','',0),(237,1,'2024-02-15 12:47:03','2024-02-15 07:17:03','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-15 12:47:03','2024-02-15 07:17:03','',182,'https://narendraram.com/?p=237',0,'revision','',0),(238,1,'2024-02-15 12:47:04','2024-02-15 07:17:04','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-15 12:47:04','2024-02-15 07:17:04','',182,'https://narendraram.com/?p=238',0,'revision','',0),(239,1,'2024-02-15 14:18:50','2024-02-15 08:48:50','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-15 14:18:50','2024-02-15 08:48:50','',182,'https://narendraram.com/?p=239',0,'revision','',0),(240,1,'2024-02-15 14:18:50','2024-02-15 08:48:50','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-15 14:18:50','2024-02-15 08:48:50','',182,'https://narendraram.com/?p=240',0,'revision','',0),(241,1,'2024-02-15 14:18:50','2024-02-15 08:48:50','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-15 14:18:50','2024-02-15 08:48:50','',182,'https://narendraram.com/?p=241',0,'revision','',0),(243,1,'2024-02-16 13:11:12','2024-02-16 07:41:12','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><strong>A Versatile Tycoon, </strong><strong>Proficient in Diverse Realms</strong></p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur. </p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Business Realms</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Manufacturing Nutraceutical\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Hospital & Pharmacies\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Sports\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Power Politics\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Feel Foundation\n											</a>\n									</li>\n						</ul>\n			<h5>Accolades</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Memberships\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Recognitions\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Awards\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Certificates\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.linkedin.com/in/narendraram/\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n						<svg viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"></path></svg>					</a>\n			<p>Copyright © 2024, All rights reserved.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-16 13:11:12','2024-02-16 07:41:12','',65,'https://narendraram.com/?p=243',0,'revision','',0),(244,1,'2024-02-16 13:11:12','2024-02-16 07:41:12','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><strong>A Versatile Tycoon, </strong><strong>Proficient in Diverse Realms</strong></p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur. </p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Business Realms</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Manufacturing Nutraceutical\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Hospital & Pharmacies\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Sports\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Power Politics\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Feel Foundation\n											</a>\n									</li>\n						</ul>\n			<h5>Accolades</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Memberships\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Recognitions\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Awards\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Certificates\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.linkedin.com/in/narendraram/\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n						<svg viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"></path></svg>					</a>\n			<p>Copyright © 2024, All rights reserved.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-16 13:11:12','2024-02-16 07:41:12','',65,'https://narendraram.com/?p=244',0,'revision','',0),(245,1,'2024-02-16 13:11:12','2024-02-16 07:41:12','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><strong>A Versatile Tycoon, </strong><strong>Proficient in Diverse Realms</strong></p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur. </p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Business Realms</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Manufacturing Nutraceutical\n											</a>\n									</li>\n								<li>\n										Hospital & Pharmacies\n									</li>\n								<li>\n										Sports\n									</li>\n								<li>\n										Power Politics\n									</li>\n								<li>\n										Feel Foundation\n									</li>\n						</ul>\n			<h5>Accolades</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Memberships\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Recognitions\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Awards\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Certificates\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.linkedin.com/in/narendraram/\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n						<svg viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"></path></svg>					</a>\n			<p>Copyright © 2024, All rights reserved.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-16 13:11:12','2024-02-16 07:41:12','',65,'https://narendraram.com/?p=245',0,'revision','',0),(246,1,'2024-02-16 13:12:09','2024-02-16 07:42:09','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-16 13:12:09','2024-02-16 07:42:09','',182,'https://narendraram.com/?p=246',0,'revision','',0),(247,1,'2024-02-16 13:12:09','2024-02-16 07:42:09','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-16 13:12:09','2024-02-16 07:42:09','',182,'https://narendraram.com/?p=247',0,'revision','',0),(248,1,'2024-02-16 13:12:09','2024-02-16 07:42:09','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-02-16 13:12:09','2024-02-16 07:42:09','',182,'https://narendraram.com/?p=248',0,'revision','',0),(249,1,'2024-02-16 13:12:21','2024-02-16 07:42:21','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><strong>A Versatile Tycoon, </strong><strong>Proficient in Diverse Realms</strong></p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur. </p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Business Realms</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Manufacturing Nutraceutical\n											</a>\n									</li>\n								<li>\n										Hospital & Pharmacies\n									</li>\n								<li>\n										Sports\n									</li>\n								<li>\n										Power Politics\n									</li>\n								<li>\n										Feel Foundation\n									</li>\n						</ul>\n			<h5>Accolades</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Memberships\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Recognitions\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Awards\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Certificates\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.linkedin.com/in/narendraram/\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n						<svg viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"></path></svg>					</a>\n			<p>Copyright © 2024, All rights reserved.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-16 13:12:21','2024-02-16 07:42:21','',65,'https://narendraram.com/?p=249',0,'revision','',0),(250,1,'2024-02-16 13:12:22','2024-02-16 07:42:22','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><strong>A Versatile Tycoon, </strong><strong>Proficient in Diverse Realms</strong></p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur. </p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Business Realms</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#\">\n											Manufacturing Nutraceutical\n											</a>\n									</li>\n								<li>\n										Hospital & Pharmacies\n									</li>\n								<li>\n										Sports\n									</li>\n								<li>\n										Power Politics\n									</li>\n								<li>\n										Feel Foundation\n									</li>\n						</ul>\n			<h5>Accolades</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Memberships\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Recognitions\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Awards\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Certificates\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.linkedin.com/in/narendraram/\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n						<svg viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"></path></svg>					</a>\n			<p>Copyright © 2024, All rights reserved.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-16 13:12:22','2024-02-16 07:42:22','',65,'https://narendraram.com/?p=250',0,'revision','',0),(251,1,'2024-02-16 13:12:22','2024-02-16 07:42:22','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><strong>A Versatile Tycoon, </strong><strong>Proficient in Diverse Realms</strong></p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur. </p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Business Realms</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#manufacturing\">\n											Manufacturing Nutraceutical\n											</a>\n									</li>\n								<li>\n										Hospital & Pharmacies\n									</li>\n								<li>\n										Sports\n									</li>\n								<li>\n										Power Politics\n									</li>\n								<li>\n										Feel Foundation\n									</li>\n						</ul>\n			<h5>Accolades</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Memberships\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Recognitions\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Awards\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Certificates\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.linkedin.com/in/narendraram/\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n						<svg viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"></path></svg>					</a>\n			<p>Copyright © 2024, All rights reserved.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-16 13:12:22','2024-02-16 07:42:22','',65,'https://narendraram.com/?p=251',0,'revision','',0),(252,1,'2024-02-16 13:14:45','2024-02-16 07:44:45','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><strong>A Versatile Tycoon, </strong><strong>Proficient in Diverse Realms</strong></p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur. </p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Business Realms</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#manufacturing\">\n											Manufacturing Nutraceutical\n											</a>\n									</li>\n								<li>\n										Hospital & Pharmacies\n									</li>\n								<li>\n										Sports\n									</li>\n								<li>\n										Power Politics\n									</li>\n								<li>\n										Feel Foundation\n									</li>\n						</ul>\n			<h5>Accolades</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Memberships\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Recognitions\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Awards\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Certificates\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.linkedin.com/in/narendraram/\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n						<svg viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"></path></svg>					</a>\n			<p>Copyright © 2024, All rights reserved.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-16 13:14:45','2024-02-16 07:44:45','',65,'https://narendraram.com/?p=252',0,'revision','',0),(253,1,'2024-02-16 13:14:45','2024-02-16 07:44:45','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><strong>A Versatile Tycoon, </strong><strong>Proficient in Diverse Realms</strong></p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur. </p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Business Realms</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#manufacturing\">\n											Manufacturing Nutraceutical\n											</a>\n									</li>\n								<li>\n										Hospital & Pharmacies\n									</li>\n								<li>\n										Sports\n									</li>\n								<li>\n										Power Politics\n									</li>\n								<li>\n										Feel Foundation\n									</li>\n						</ul>\n			<h5>Accolades</h5>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Memberships\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Recognitions\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Awards\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Certificates\n											</a>\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.linkedin.com/in/narendraram/\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n						<svg viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"></path></svg>					</a>\n			<p>Copyright © 2024, All rights reserved.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-16 13:14:45','2024-02-16 07:44:45','',65,'https://narendraram.com/?p=253',0,'revision','',0),(254,1,'2024-02-16 13:14:45','2024-02-16 07:44:45','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"500\" height=\"300\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Narendra-Ram-Logo-300x180.png 300w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		<p><strong>A Versatile Tycoon, </strong><strong>Proficient in Diverse Realms</strong></p><p>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur. </p>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h5>Business Realms</h5>		\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-block-end:0;flex-grow:1;border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n											<a href=\"#manufacturing\">\n											Manufacturing Nutraceutical\n											</a>\n									</li>\n								<li>\n										Hospital & Pharmacies\n									</li>\n								<li>\n										Sports\n									</li>\n								<li>\n										Power Politics\n									</li>\n								<li>\n										Feel Foundation\n									</li>\n						</ul>\n			<h5>Accolades</h5>		\n					<ul>\n							<li>\n										Memberships\n									</li>\n								<li>\n										Recognitions\n									</li>\n								<li>\n										Awards\n									</li>\n								<li>\n										Certificates\n									</li>\n						</ul>\n			<h5>Subscribe now</h5>		\n			            <form id=\"rform\" data-form=\"370\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a href=\"https://www.linkedin.com/in/narendraram/\" target=\"_blank\" rel=\"noopener\">\n						Linkedin\n						<svg viewBox=\"0 0 448 512\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z\"></path></svg>					</a>\n			<p>Copyright © 2024, All rights reserved.</p>		\n					<ul>\n							<li>\n											<a href=\"#\">\n											Term of use\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n											Cookie Policy\n											</a>\n									</li>\n						</ul>','Footer','','inherit','closed','closed','','65-revision-v1','','','2024-02-16 13:14:45','2024-02-16 07:44:45','',65,'https://narendraram.com/?p=254',0,'revision','',0),(255,1,'2024-03-04 14:58:20','2024-03-04 09:28:20','','placeholder-282.png','','inherit','open','closed','','placeholder-282-png','','','2024-03-04 14:58:20','2024-03-04 09:28:20','',0,'https://narendraram.com/wp-content/uploads/2024/03/placeholder-282.png',0,'attachment','image/png',0),(256,1,'2024-03-04 14:58:21','2024-03-04 09:28:21','','info-box-icon-21.png','','inherit','open','closed','','info-box-icon-21-png','','','2024-03-04 14:58:21','2024-03-04 09:28:21','',0,'https://narendraram.com/wp-content/uploads/2024/03/info-box-icon-21.png',0,'attachment','image/png',0),(257,1,'2024-03-04 14:58:21','2024-03-04 09:28:21','','placeholder-240.png','','inherit','open','closed','','placeholder-240-png','','','2024-03-04 14:58:21','2024-03-04 09:28:21','',0,'https://narendraram.com/wp-content/uploads/2024/03/placeholder-240.png',0,'attachment','image/png',0),(259,1,'2024-03-05 10:26:54','2024-03-05 04:56:54','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\" more=\"\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cdb8cc22cab\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb8cc22cab\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb8cc22cab\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb8cc22cab\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb8cc22cab\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb8cc22cab\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb8cc22cab\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb8cc22cab\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb8cc22cab\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cdb8cc237a5\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb8cc237a5\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb8cc237a5\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb8cc237a5\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb8cc237a5\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb8cc237a5\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb8cc237a5\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb8cc237a5\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb8cc237a5\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-03-05 10:26:54','2024-03-05 04:56:54','',75,'https://narendraram.com/?p=259',0,'revision','',0),(260,1,'2024-03-05 10:26:54','2024-03-05 04:56:54','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\" more=\"\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65cdb8cc22cab\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb8cc22cab\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb8cc22cab\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb8cc22cab\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb8cc22cab\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb8cc22cab\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb8cc22cab\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb8cc22cab\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb8cc22cab\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65cdb8cc237a5\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65cdb8cc237a5\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65cdb8cc237a5\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465cdb8cc237a5\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465cdb8cc237a5\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465cdb8cc237a5\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665cdb8cc237a5\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665cdb8cc237a5\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665cdb8cc237a5\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-03-05 10:26:54','2024-03-05 04:56:54','',75,'https://narendraram.com/?p=260',0,'revision','',0),(261,1,'2024-03-05 10:26:55','2024-03-05 04:56:55','<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\" more=\"\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n													<img src=\"https://narendraram.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h2>LIFESPAN SUPER SPECIALITY HOSPITALS</h2>				\n					<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.</p>\n<p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.</p>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                            <h3>\n                    Personalized Care Plans                </h3>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                            <h3>\n                    Total Healthcare Solution                </h3>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                            <h3>\n                    State of the Art Technology                </h3>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                            <h3>\n                    Fast Track Appointments                </h3>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                            <h3>\n                    Comprehensive Wellness Programs                </h3>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                            <h3>\n                    Community Outreach Programs                </h3>\n                </a>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65e6a6171eb45\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e6a6171eb45\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e6a6171eb45\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e6a6171eb45\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e6a6171eb45\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e6a6171eb45\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e6a6171eb45\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e6a6171eb45\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e6a6171eb45\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65e6a6171f5f3\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e6a6171f5f3\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e6a6171f5f3\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e6a6171f5f3\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e6a6171f5f3\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e6a6171f5f3\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e6a6171f5f3\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e6a6171f5f3\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e6a6171f5f3\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                <style>.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-container{min-height:90vh;}.elementor-235 .elementor-element.elementor-element-0034ab0{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, var( --e-global-color-secondary ) 0%, var( --e-global-color-23c5e7b ) 100%);}.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-background-overlay{background-image:url(\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\");background-position:center center;background-size:cover;opacity:0.05;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0 .elementor-background-overlay{filter:brightness( 85% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{height:600px;object-fit:cover;object-position:center center;opacity:1;border-style:none;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:1em 1em 1em 4em;}.elementor-235 .elementor-element.elementor-element-867b192{text-align:left;z-index:1;}.elementor-235 .elementor-element.elementor-element-867b192 img{width:15%;}.elementor-235 .elementor-element.elementor-element-867b192 > .elementor-widget-container{margin:3% 40% -45% -15%;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:left;}.elementor-235 .elementor-element.elementor-element-ddec505 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-primary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-4f64a1f-font-family ), Sans-serif;font-size:var( --e-global-typography-4f64a1f-font-size );font-weight:var( --e-global-typography-4f64a1f-font-weight );text-transform:var( --e-global-typography-4f64a1f-text-transform );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-26fe4c0-font-family ), Sans-serif;font-size:var( --e-global-typography-26fe4c0-font-size );font-weight:var( --e-global-typography-26fe4c0-font-weight );text-transform:var( --e-global-typography-26fe4c0-text-transform );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c > .elementor-widget-container{margin:15px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-right{margin-left:10px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-left{margin-right:10px;}.elementor-235 .elementor-element.elementor-element-20744e9{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:6em 1em 6em 1em;}.elementor-235 .elementor-element.elementor-element-20744e9:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-fc39988.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 3em 1em 1em;}.elementor-235 .elementor-element.elementor-element-0f20c3a{text-align:left;}.elementor-235 .elementor-element.elementor-element-0f20c3a .elementor-heading-title{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-secondary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da > .elementor-widget-container{margin:0% 0% 0% 0%;}.elementor-235 .elementor-element.elementor-element-f109edb{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f109edb > .elementor-widget-container{padding:0em 0em 0em 2em;border-style:solid;border-width:0px 0px 0px 2px;border-color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-1d82919{margin-top:-1%;margin-bottom:3%;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title{margin-bottom:0px;color:#FFFFFF;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title{margin-bottom:0px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-f4d0dc0{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0px;}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 3em;}.elementor-235 .elementor-element.elementor-element-6a6db6d{text-align:left;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{width:65%;height:500px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -70% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a{text-align:right;z-index:1;}.elementor-235 .elementor-element.elementor-element-4d5707a img{width:72%;height:500px;object-fit:cover;object-position:center center;filter:brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 42px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{overflow:hidden;padding:4em 1em 4em 1em;}.elementor-235 .elementor-element.elementor-element-d129068 > .elementor-element-populated{padding:1em 0em 1em 0em;}.elementor-235 .elementor-element.elementor-element-415127d > .elementor-container{max-width:794px;}.elementor-235 .elementor-element.elementor-element-415127d{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-f2de80c > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-ee19b6b{text-align:center;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 > .elementor-widget-container{margin:0% 0% 0% 0%;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-9e8dea5{text-align:center;}.elementor-235 .elementor-element.elementor-element-e248a24{overflow:hidden;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 20px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:80px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-ecd9047 img{height:600px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-f601467.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 80px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:20px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-5953a6c{margin-top:0px;margin-bottom:0px;padding:50px 0px 50px 0px;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-185a38a{margin-top:20px;margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider{width:40px;background:linear-gradient(90deg, #5B7674 0%, #5B7674 100%);}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider.elementskit-style-long{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider, .elementor-235 .elementor-element.elementor-element-df37222 .elementskit-border-divider::before{height:4px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider:before{background-color:#5B7674;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star:after{background-color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:15px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:5;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{box-shadow:0px 0px 10px 0px rgba(0,0,0,0);border-style:solid;border-width:5px 5px 5px 5px;border-color:#333333;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider.simple_logo_image .single-client:hover{box-shadow:5px 10px 15px 0px rgba(0,0,0,0.1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client:hover{border-style:solid;border-color:#000000;}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client .content-image .main-image{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image .main-image{opacity:1;filter:alpha(opacity=1);}@media(max-width:1024px){.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 5em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad{text-align:center;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:45%;height:340px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:8em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:center;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-e045e00{text-align:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:300px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -35% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:300px;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}}@media(min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:40%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:60%;}}@media(max-width:1024px) and (min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:100%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:100%;}.elementor-235 .elementor-element.elementor-element-fc39988{width:100%;}.elementor-235 .elementor-element.elementor-element-f02157d{width:100%;}.elementor-235 .elementor-element.elementor-element-69e15e2{width:100%;}.elementor-235 .elementor-element.elementor-element-24781a1{width:100%;}.elementor-235 .elementor-element.elementor-element-f601467{width:100%;}}@media(max-width:767px){.elementor-235 .elementor-element.elementor-element-0034ab0{padding:0em 0em 0em 0em;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:23px;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 0em 2em 0em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:70%;height:320px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:4em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-20744e9{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:0em 4em 0em 0em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:200px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -62% 16%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:200px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 40px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-width:0px 1px 1px 1px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .swiper-wrapper{padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{min-height:80px;}}</style>		\n						<section data-id=\"0034ab0\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n													<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>				<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>						\n			<a href=\"#more\">\n						discover more\n					</a>\n		</section>\n				<section data-id=\"20744e9\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n							<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>						\n				<section data-id=\"1d82919\" data-element_type=\"section\">\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		</section>\n							<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation&#8217;s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>						\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		</section>\n				<section data-id=\"78b9ffb\" data-element_type=\"section\">\n						<section data-id=\"415127d\" data-element_type=\"section\">\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n							<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>						\n		</section>\n				<section data-id=\"e248a24\" data-element_type=\"section\">\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n		</section>\n		</section>\n				<section data-id=\"5953a6c\" data-element_type=\"section\">\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n				<section data-id=\"185a38a\" data-element_type=\"section\">\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n		</section>\n				<section data-id=\"815cc91\" data-element_type=\"section\">\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n		</section>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n		</section>\n		            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-03-05 10:26:55','2024-03-05 04:56:55','',75,'https://narendraram.com/?p=261',0,'revision','',0),(262,1,'2024-03-05 10:27:30','2024-03-05 04:57:30','','Lifespan hospitals','','inherit','open','closed','','lifespan-hospitals','','','2024-03-05 10:27:30','2024-03-05 04:57:30','',75,'https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp',0,'attachment','image/webp',0),(264,1,'2024-03-05 11:55:46','2024-03-05 06:25:46','','Lifespan Pharmacies','','inherit','open','closed','','lifespan-pharmacies','','','2024-03-05 11:55:46','2024-03-05 06:25:46','',75,'https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies.webp',0,'attachment','image/webp',0),(265,1,'2024-03-05 16:16:15','2024-03-05 10:46:15','','Lifespan Pharamcies logo','','inherit','open','closed','','lifespan-pharamcies-logo','','','2024-03-05 16:16:15','2024-03-05 10:46:15','',75,'https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png',0,'attachment','image/png',0),(266,1,'2024-03-05 16:37:17','2024-03-05 11:07:17','<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\" more=\"\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n													<img src=\"https://narendraram.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h2>LIFESPAN SUPER SPECIALITY HOSPITALS</h2>				\n					<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.</p>\n<p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.</p>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                            <h3>\n                    Personalized Care Plans                </h3>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                            <h3>\n                    Total Healthcare Solution                </h3>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                            <h3>\n                    State of the Art Technology                </h3>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                            <h3>\n                    Fast Track Appointments                </h3>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                            <h3>\n                    Comprehensive Wellness Programs                </h3>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                            <h3>\n                    Community Outreach Programs                </h3>\n                </a>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65e6a6171eb45\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e6a6171eb45\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e6a6171eb45\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e6a6171eb45\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e6a6171eb45\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e6a6171eb45\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e6a6171eb45\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e6a6171eb45\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e6a6171eb45\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65e6a6171f5f3\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e6a6171f5f3\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e6a6171f5f3\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e6a6171f5f3\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e6a6171f5f3\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e6a6171f5f3\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e6a6171f5f3\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e6a6171f5f3\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e6a6171f5f3\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                <style>.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-container{min-height:90vh;}.elementor-235 .elementor-element.elementor-element-0034ab0{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, var( --e-global-color-secondary ) 0%, var( --e-global-color-23c5e7b ) 100%);}.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-background-overlay{background-image:url(\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\");background-position:center center;background-size:cover;opacity:0.05;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0 .elementor-background-overlay{filter:brightness( 85% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{height:600px;object-fit:cover;object-position:center center;opacity:1;border-style:none;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:1em 1em 1em 4em;}.elementor-235 .elementor-element.elementor-element-867b192{text-align:left;z-index:1;}.elementor-235 .elementor-element.elementor-element-867b192 img{width:15%;}.elementor-235 .elementor-element.elementor-element-867b192 > .elementor-widget-container{margin:3% 40% -45% -15%;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:left;}.elementor-235 .elementor-element.elementor-element-ddec505 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-primary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-4f64a1f-font-family ), Sans-serif;font-size:var( --e-global-typography-4f64a1f-font-size );font-weight:var( --e-global-typography-4f64a1f-font-weight );text-transform:var( --e-global-typography-4f64a1f-text-transform );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-26fe4c0-font-family ), Sans-serif;font-size:var( --e-global-typography-26fe4c0-font-size );font-weight:var( --e-global-typography-26fe4c0-font-weight );text-transform:var( --e-global-typography-26fe4c0-text-transform );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c > .elementor-widget-container{margin:15px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-right{margin-left:10px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-left{margin-right:10px;}.elementor-235 .elementor-element.elementor-element-20744e9{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:6em 1em 6em 1em;}.elementor-235 .elementor-element.elementor-element-20744e9:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-fc39988.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 3em 1em 1em;}.elementor-235 .elementor-element.elementor-element-0f20c3a{text-align:left;}.elementor-235 .elementor-element.elementor-element-0f20c3a .elementor-heading-title{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-secondary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da > .elementor-widget-container{margin:0% 0% 0% 0%;}.elementor-235 .elementor-element.elementor-element-f109edb{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f109edb > .elementor-widget-container{padding:0em 0em 0em 2em;border-style:solid;border-width:0px 0px 0px 2px;border-color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-1d82919{margin-top:-1%;margin-bottom:3%;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title{margin-bottom:0px;color:#FFFFFF;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title{margin-bottom:0px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-f4d0dc0{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0px;}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 3em;}.elementor-235 .elementor-element.elementor-element-6a6db6d{text-align:left;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{width:65%;height:500px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -70% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a{text-align:right;z-index:1;}.elementor-235 .elementor-element.elementor-element-4d5707a img{width:72%;height:500px;object-fit:cover;object-position:center center;filter:brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 42px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{overflow:hidden;padding:4em 1em 4em 1em;}.elementor-235 .elementor-element.elementor-element-d129068 > .elementor-element-populated{padding:1em 0em 1em 0em;}.elementor-235 .elementor-element.elementor-element-415127d > .elementor-container{max-width:794px;}.elementor-235 .elementor-element.elementor-element-415127d{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-f2de80c > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-ee19b6b{text-align:center;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 > .elementor-widget-container{margin:0% 0% 0% 0%;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-9e8dea5{text-align:center;}.elementor-235 .elementor-element.elementor-element-e248a24{overflow:hidden;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 20px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:80px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-ecd9047 img{height:600px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-f601467.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 80px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:20px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-5953a6c{margin-top:0px;margin-bottom:0px;padding:50px 0px 50px 0px;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-185a38a{margin-top:20px;margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider{width:40px;background:linear-gradient(90deg, #5B7674 0%, #5B7674 100%);}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider.elementskit-style-long{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider, .elementor-235 .elementor-element.elementor-element-df37222 .elementskit-border-divider::before{height:4px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider:before{background-color:#5B7674;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star:after{background-color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:15px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:5;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{box-shadow:0px 0px 10px 0px rgba(0,0,0,0);border-style:solid;border-width:5px 5px 5px 5px;border-color:#333333;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider.simple_logo_image .single-client:hover{box-shadow:5px 10px 15px 0px rgba(0,0,0,0.1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client:hover{border-style:solid;border-color:#000000;}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client .content-image .main-image{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image .main-image{opacity:1;filter:alpha(opacity=1);}@media(max-width:1024px){.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 5em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad{text-align:center;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:45%;height:340px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:8em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:center;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-e045e00{text-align:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:300px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -35% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:300px;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}}@media(min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:40%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:60%;}}@media(max-width:1024px) and (min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:100%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:100%;}.elementor-235 .elementor-element.elementor-element-fc39988{width:100%;}.elementor-235 .elementor-element.elementor-element-f02157d{width:100%;}.elementor-235 .elementor-element.elementor-element-69e15e2{width:100%;}.elementor-235 .elementor-element.elementor-element-24781a1{width:100%;}.elementor-235 .elementor-element.elementor-element-f601467{width:100%;}}@media(max-width:767px){.elementor-235 .elementor-element.elementor-element-0034ab0{padding:0em 0em 0em 0em;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:23px;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 0em 2em 0em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:70%;height:320px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:4em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-20744e9{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:0em 4em 0em 0em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:200px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -62% 16%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:200px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 40px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-width:0px 1px 1px 1px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .swiper-wrapper{padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{min-height:80px;}}</style>		\n						<section data-id=\"0034ab0\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n													<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>				<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>						\n			<a href=\"#more\">\n						discover more\n					</a>\n		</section>\n				<section data-id=\"20744e9\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n							<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>						\n				<section data-id=\"1d82919\" data-element_type=\"section\">\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		</section>\n							<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation&#8217;s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>						\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		</section>\n				<section data-id=\"78b9ffb\" data-element_type=\"section\">\n						<section data-id=\"415127d\" data-element_type=\"section\">\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n							<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>						\n		</section>\n				<section data-id=\"e248a24\" data-element_type=\"section\">\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n		</section>\n		</section>\n				<section data-id=\"5953a6c\" data-element_type=\"section\">\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n				<section data-id=\"185a38a\" data-element_type=\"section\">\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n		</section>\n				<section data-id=\"815cc91\" data-element_type=\"section\">\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n		</section>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n		</section>\n		            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-03-05 16:37:17','2024-03-05 11:07:17','',75,'https://narendraram.com/?p=266',0,'revision','',0),(267,1,'2024-03-05 16:37:17','2024-03-05 11:07:17','<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\" more=\"\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n													<img src=\"https://narendraram.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h2>LIFESPAN SUPER SPECIALITY HOSPITALS</h2>				\n					<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.</p>\n<p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.</p>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                            <h3>\n                    Personalized Care Plans                </h3>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                            <h3>\n                    Total Healthcare Solution                </h3>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                            <h3>\n                    State of the Art Technology                </h3>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                            <h3>\n                    Fast Track Appointments                </h3>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                            <h3>\n                    Comprehensive Wellness Programs                </h3>\n                </a>\n			        <!-- link opening -->\n                <a href=\"#\">\n                <!-- end link opening -->\n                            <h3>\n                    Community Outreach Programs                </h3>\n                </a>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65e6a6171eb45\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e6a6171eb45\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e6a6171eb45\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e6a6171eb45\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e6a6171eb45\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e6a6171eb45\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e6a6171eb45\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e6a6171eb45\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e6a6171eb45\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65e6a6171f5f3\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e6a6171f5f3\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e6a6171f5f3\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e6a6171f5f3\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e6a6171f5f3\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e6a6171f5f3\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e6a6171f5f3\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e6a6171f5f3\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e6a6171f5f3\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                <style>.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-container{min-height:90vh;}.elementor-235 .elementor-element.elementor-element-0034ab0{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, var( --e-global-color-secondary ) 0%, var( --e-global-color-23c5e7b ) 100%);}.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-background-overlay{background-image:url(\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\");background-position:center center;background-size:cover;opacity:0.05;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0 .elementor-background-overlay{filter:brightness( 85% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{height:600px;object-fit:cover;object-position:center center;opacity:1;border-style:none;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:1em 1em 1em 4em;}.elementor-235 .elementor-element.elementor-element-867b192{text-align:left;z-index:1;}.elementor-235 .elementor-element.elementor-element-867b192 img{width:15%;}.elementor-235 .elementor-element.elementor-element-867b192 > .elementor-widget-container{margin:3% 40% -45% -15%;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:left;}.elementor-235 .elementor-element.elementor-element-ddec505 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-primary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-4f64a1f-font-family ), Sans-serif;font-size:var( --e-global-typography-4f64a1f-font-size );font-weight:var( --e-global-typography-4f64a1f-font-weight );text-transform:var( --e-global-typography-4f64a1f-text-transform );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-26fe4c0-font-family ), Sans-serif;font-size:var( --e-global-typography-26fe4c0-font-size );font-weight:var( --e-global-typography-26fe4c0-font-weight );text-transform:var( --e-global-typography-26fe4c0-text-transform );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c > .elementor-widget-container{margin:15px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-right{margin-left:10px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-left{margin-right:10px;}.elementor-235 .elementor-element.elementor-element-20744e9{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:6em 1em 6em 1em;}.elementor-235 .elementor-element.elementor-element-20744e9:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-fc39988.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 3em 1em 1em;}.elementor-235 .elementor-element.elementor-element-0f20c3a{text-align:left;}.elementor-235 .elementor-element.elementor-element-0f20c3a .elementor-heading-title{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-secondary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da > .elementor-widget-container{margin:0% 0% 0% 0%;}.elementor-235 .elementor-element.elementor-element-f109edb{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f109edb > .elementor-widget-container{padding:0em 0em 0em 2em;border-style:solid;border-width:0px 0px 0px 2px;border-color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-1d82919{margin-top:-1%;margin-bottom:3%;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title{margin-bottom:0px;color:#FFFFFF;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title{margin-bottom:0px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-f4d0dc0{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0px;}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 3em;}.elementor-235 .elementor-element.elementor-element-6a6db6d{text-align:left;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{width:65%;height:500px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -70% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a{text-align:right;z-index:1;}.elementor-235 .elementor-element.elementor-element-4d5707a img{width:72%;height:500px;object-fit:cover;object-position:center center;filter:brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 42px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{overflow:hidden;padding:4em 1em 4em 1em;}.elementor-235 .elementor-element.elementor-element-d129068 > .elementor-element-populated{padding:1em 0em 1em 0em;}.elementor-235 .elementor-element.elementor-element-415127d > .elementor-container{max-width:794px;}.elementor-235 .elementor-element.elementor-element-415127d{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-f2de80c > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-ee19b6b{text-align:center;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 > .elementor-widget-container{margin:0% 0% 0% 0%;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-9e8dea5{text-align:center;}.elementor-235 .elementor-element.elementor-element-e248a24{overflow:hidden;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 20px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:80px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-ecd9047 img{height:600px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-f601467.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 80px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:20px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-5953a6c{margin-top:0px;margin-bottom:0px;padding:50px 0px 50px 0px;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-185a38a{margin-top:20px;margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider{width:40px;background:linear-gradient(90deg, #5B7674 0%, #5B7674 100%);}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider.elementskit-style-long{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider, .elementor-235 .elementor-element.elementor-element-df37222 .elementskit-border-divider::before{height:4px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider:before{background-color:#5B7674;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star:after{background-color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:15px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:5;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{box-shadow:0px 0px 10px 0px rgba(0,0,0,0);border-style:solid;border-width:5px 5px 5px 5px;border-color:#333333;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider.simple_logo_image .single-client:hover{box-shadow:5px 10px 15px 0px rgba(0,0,0,0.1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client:hover{border-style:solid;border-color:#000000;}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client .content-image .main-image{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image .main-image{opacity:1;filter:alpha(opacity=1);}@media(max-width:1024px){.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 5em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad{text-align:center;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:45%;height:340px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:8em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:center;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-e045e00{text-align:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:300px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -35% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:300px;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}}@media(min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:40%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:60%;}}@media(max-width:1024px) and (min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:100%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:100%;}.elementor-235 .elementor-element.elementor-element-fc39988{width:100%;}.elementor-235 .elementor-element.elementor-element-f02157d{width:100%;}.elementor-235 .elementor-element.elementor-element-69e15e2{width:100%;}.elementor-235 .elementor-element.elementor-element-24781a1{width:100%;}.elementor-235 .elementor-element.elementor-element-f601467{width:100%;}}@media(max-width:767px){.elementor-235 .elementor-element.elementor-element-0034ab0{padding:0em 0em 0em 0em;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:23px;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 0em 2em 0em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:70%;height:320px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:4em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-20744e9{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:0em 4em 0em 0em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:200px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -62% 16%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:200px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 40px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-width:0px 1px 1px 1px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .swiper-wrapper{padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{min-height:80px;}}</style>		\n						<section data-id=\"0034ab0\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n													<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>				<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>						\n			<a href=\"#more\">\n						discover more\n					</a>\n		</section>\n				<section data-id=\"20744e9\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n							<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>						\n				<section data-id=\"1d82919\" data-element_type=\"section\">\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		</section>\n							<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation&#8217;s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>						\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		</section>\n				<section data-id=\"78b9ffb\" data-element_type=\"section\">\n						<section data-id=\"415127d\" data-element_type=\"section\">\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n							<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>						\n		</section>\n				<section data-id=\"e248a24\" data-element_type=\"section\">\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n		</section>\n		</section>\n				<section data-id=\"5953a6c\" data-element_type=\"section\">\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n				<section data-id=\"185a38a\" data-element_type=\"section\">\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n		</section>\n				<section data-id=\"815cc91\" data-element_type=\"section\">\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n		</section>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n		</section>\n		            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-03-05 16:37:17','2024-03-05 11:07:17','',75,'https://narendraram.com/?p=267',0,'revision','',0),(268,1,'2024-03-05 16:37:18','2024-03-05 11:07:18','<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\" more=\"\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"1280\" height=\"536\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp 1280w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-300x126.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-1024x429.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-768x322.webp 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />													\n			<h2>LIFESPAN SUPER SPECIALITY HOSPITALS</h2>				\n					<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.</p>\n<p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Personalized Care Plans                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Total Healthcare Solution                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    State of the Art Technology                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Fast Track Appointments                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Comprehensive Wellness Programs                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Community Outreach Programs                </h3>\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-768x512.webp 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies.webp 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n			<h2>LIFESPAN PHARMACIES</h2>				\n					<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.</p>\n<p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.</p>\n<p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.</p>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65e6fce5c83df\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e6fce5c83df\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e6fce5c83df\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e6fce5c83df\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e6fce5c83df\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e6fce5c83df\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e6fce5c83df\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e6fce5c83df\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e6fce5c83df\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65e6fce5c8ead\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e6fce5c8ead\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e6fce5c8ead\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e6fce5c8ead\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e6fce5c8ead\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e6fce5c8ead\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e6fce5c8ead\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e6fce5c8ead\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e6fce5c8ead\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                <style>.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-container{min-height:90vh;}.elementor-235 .elementor-element.elementor-element-0034ab0{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, var( --e-global-color-secondary ) 0%, var( --e-global-color-23c5e7b ) 100%);}.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-background-overlay{background-image:url(\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\");background-position:center center;background-size:cover;opacity:0.05;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0 .elementor-background-overlay{filter:brightness( 85% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{height:600px;object-fit:cover;object-position:center center;opacity:1;border-style:none;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:1em 1em 1em 4em;}.elementor-235 .elementor-element.elementor-element-867b192{text-align:left;z-index:1;}.elementor-235 .elementor-element.elementor-element-867b192 img{width:15%;}.elementor-235 .elementor-element.elementor-element-867b192 > .elementor-widget-container{margin:3% 40% -45% -15%;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:left;}.elementor-235 .elementor-element.elementor-element-ddec505 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-primary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-4f64a1f-font-family ), Sans-serif;font-size:var( --e-global-typography-4f64a1f-font-size );font-weight:var( --e-global-typography-4f64a1f-font-weight );text-transform:var( --e-global-typography-4f64a1f-text-transform );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-26fe4c0-font-family ), Sans-serif;font-size:var( --e-global-typography-26fe4c0-font-size );font-weight:var( --e-global-typography-26fe4c0-font-weight );text-transform:var( --e-global-typography-26fe4c0-text-transform );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c > .elementor-widget-container{margin:15px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-right{margin-left:10px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-left{margin-right:10px;}.elementor-235 .elementor-element.elementor-element-20744e9{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:6em 1em 6em 1em;}.elementor-235 .elementor-element.elementor-element-20744e9:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-fc39988.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 3em 1em 1em;}.elementor-235 .elementor-element.elementor-element-0f20c3a{text-align:left;}.elementor-235 .elementor-element.elementor-element-0f20c3a .elementor-heading-title{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-secondary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da > .elementor-widget-container{margin:0% 0% 0% 0%;}.elementor-235 .elementor-element.elementor-element-f109edb{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f109edb > .elementor-widget-container{padding:0em 0em 0em 2em;border-style:solid;border-width:0px 0px 0px 2px;border-color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-1d82919{margin-top:-1%;margin-bottom:3%;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title{margin-bottom:0px;color:#FFFFFF;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title{margin-bottom:0px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-f4d0dc0{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0px;}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 3em;}.elementor-235 .elementor-element.elementor-element-6a6db6d{text-align:left;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{width:65%;height:500px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -70% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a{text-align:right;z-index:1;}.elementor-235 .elementor-element.elementor-element-4d5707a img{width:72%;height:500px;object-fit:cover;object-position:center center;filter:brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 42px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{overflow:hidden;padding:4em 1em 4em 1em;}.elementor-235 .elementor-element.elementor-element-d129068 > .elementor-element-populated{padding:1em 0em 1em 0em;}.elementor-235 .elementor-element.elementor-element-415127d > .elementor-container{max-width:794px;}.elementor-235 .elementor-element.elementor-element-415127d{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-f2de80c > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-ee19b6b{text-align:center;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 > .elementor-widget-container{margin:0% 0% 0% 0%;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-9e8dea5{text-align:center;}.elementor-235 .elementor-element.elementor-element-e248a24{overflow:hidden;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 20px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:80px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-ecd9047 img{height:600px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-f601467.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 80px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:20px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-5953a6c{margin-top:0px;margin-bottom:0px;padding:50px 0px 50px 0px;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-185a38a{margin-top:20px;margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider{width:40px;background:linear-gradient(90deg, #5B7674 0%, #5B7674 100%);}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider.elementskit-style-long{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider, .elementor-235 .elementor-element.elementor-element-df37222 .elementskit-border-divider::before{height:4px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider:before{background-color:#5B7674;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star:after{background-color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:15px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:5;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{box-shadow:0px 0px 10px 0px rgba(0,0,0,0);border-style:solid;border-width:5px 5px 5px 5px;border-color:#333333;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider.simple_logo_image .single-client:hover{box-shadow:5px 10px 15px 0px rgba(0,0,0,0.1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client:hover{border-style:solid;border-color:#000000;}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client .content-image .main-image{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image .main-image{opacity:1;filter:alpha(opacity=1);}@media(max-width:1024px){.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 5em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad{text-align:center;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:45%;height:340px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:8em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:center;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-e045e00{text-align:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:300px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -35% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:300px;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}}@media(min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:40%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:60%;}}@media(max-width:1024px) and (min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:100%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:100%;}.elementor-235 .elementor-element.elementor-element-fc39988{width:100%;}.elementor-235 .elementor-element.elementor-element-f02157d{width:100%;}.elementor-235 .elementor-element.elementor-element-69e15e2{width:100%;}.elementor-235 .elementor-element.elementor-element-24781a1{width:100%;}.elementor-235 .elementor-element.elementor-element-f601467{width:100%;}}@media(max-width:767px){.elementor-235 .elementor-element.elementor-element-0034ab0{padding:0em 0em 0em 0em;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:23px;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 0em 2em 0em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:70%;height:320px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:4em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-20744e9{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:0em 4em 0em 0em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:200px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -62% 16%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:200px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 40px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-width:0px 1px 1px 1px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .swiper-wrapper{padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{min-height:80px;}}</style>		\n						<section data-id=\"0034ab0\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n													<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>				<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>						\n			<a href=\"#more\">\n						discover more\n					</a>\n		</section>\n				<section data-id=\"20744e9\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n							<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>						\n				<section data-id=\"1d82919\" data-element_type=\"section\">\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		</section>\n							<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation&#8217;s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>						\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		</section>\n				<section data-id=\"78b9ffb\" data-element_type=\"section\">\n						<section data-id=\"415127d\" data-element_type=\"section\">\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n							<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>						\n		</section>\n				<section data-id=\"e248a24\" data-element_type=\"section\">\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n		</section>\n		</section>\n				<section data-id=\"5953a6c\" data-element_type=\"section\">\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n				<section data-id=\"185a38a\" data-element_type=\"section\">\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n		</section>\n				<section data-id=\"815cc91\" data-element_type=\"section\">\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n		</section>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n		</section>\n		            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-03-05 16:37:18','2024-03-05 11:07:18','',75,'https://narendraram.com/?p=268',0,'revision','',0),(270,1,'2024-03-06 10:16:31','2024-03-06 04:46:31','<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\" more=\"\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"1280\" height=\"536\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp 1280w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-300x126.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-1024x429.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-768x322.webp 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />													\n			<h2>LIFESPAN SUPER SPECIALITY HOSPITALS</h2>				\n					<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.</p>\n<p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Personalized Care Plans                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Total Healthcare Solution                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    State of the Art Technology                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Fast Track Appointments                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Comprehensive Wellness Programs                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Community Outreach Programs                </h3>\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-768x512.webp 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies.webp 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n			<h2>LIFESPAN PHARMACIES</h2>				\n					<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.</p>\n<p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.</p>\n<p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.</p>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65e6fce5c83df\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e6fce5c83df\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e6fce5c83df\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e6fce5c83df\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e6fce5c83df\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e6fce5c83df\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e6fce5c83df\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e6fce5c83df\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e6fce5c83df\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65e6fce5c8ead\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e6fce5c8ead\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e6fce5c8ead\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e6fce5c8ead\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e6fce5c8ead\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e6fce5c8ead\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e6fce5c8ead\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e6fce5c8ead\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e6fce5c8ead\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                <style>.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-container{min-height:90vh;}.elementor-235 .elementor-element.elementor-element-0034ab0{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, var( --e-global-color-secondary ) 0%, var( --e-global-color-23c5e7b ) 100%);}.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-background-overlay{background-image:url(\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\");background-position:center center;background-size:cover;opacity:0.05;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0 .elementor-background-overlay{filter:brightness( 85% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{height:600px;object-fit:cover;object-position:center center;opacity:1;border-style:none;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:1em 1em 1em 4em;}.elementor-235 .elementor-element.elementor-element-867b192{text-align:left;z-index:1;}.elementor-235 .elementor-element.elementor-element-867b192 img{width:15%;}.elementor-235 .elementor-element.elementor-element-867b192 > .elementor-widget-container{margin:3% 40% -45% -15%;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:left;}.elementor-235 .elementor-element.elementor-element-ddec505 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-primary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-4f64a1f-font-family ), Sans-serif;font-size:var( --e-global-typography-4f64a1f-font-size );font-weight:var( --e-global-typography-4f64a1f-font-weight );text-transform:var( --e-global-typography-4f64a1f-text-transform );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-26fe4c0-font-family ), Sans-serif;font-size:var( --e-global-typography-26fe4c0-font-size );font-weight:var( --e-global-typography-26fe4c0-font-weight );text-transform:var( --e-global-typography-26fe4c0-text-transform );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c > .elementor-widget-container{margin:15px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-right{margin-left:10px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-left{margin-right:10px;}.elementor-235 .elementor-element.elementor-element-20744e9{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:6em 1em 6em 1em;}.elementor-235 .elementor-element.elementor-element-20744e9:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-fc39988.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 3em 1em 1em;}.elementor-235 .elementor-element.elementor-element-0f20c3a{text-align:left;}.elementor-235 .elementor-element.elementor-element-0f20c3a .elementor-heading-title{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-secondary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da > .elementor-widget-container{margin:0% 0% 0% 0%;}.elementor-235 .elementor-element.elementor-element-f109edb{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f109edb > .elementor-widget-container{padding:0em 0em 0em 2em;border-style:solid;border-width:0px 0px 0px 2px;border-color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-1d82919{margin-top:-1%;margin-bottom:3%;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title{margin-bottom:0px;color:#FFFFFF;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title{margin-bottom:0px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-f4d0dc0{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0px;}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 3em;}.elementor-235 .elementor-element.elementor-element-6a6db6d{text-align:left;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{width:65%;height:500px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -70% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a{text-align:right;z-index:1;}.elementor-235 .elementor-element.elementor-element-4d5707a img{width:72%;height:500px;object-fit:cover;object-position:center center;filter:brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 42px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{overflow:hidden;padding:4em 1em 4em 1em;}.elementor-235 .elementor-element.elementor-element-d129068 > .elementor-element-populated{padding:1em 0em 1em 0em;}.elementor-235 .elementor-element.elementor-element-415127d > .elementor-container{max-width:794px;}.elementor-235 .elementor-element.elementor-element-415127d{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-f2de80c > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-ee19b6b{text-align:center;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 > .elementor-widget-container{margin:0% 0% 0% 0%;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-9e8dea5{text-align:center;}.elementor-235 .elementor-element.elementor-element-e248a24{overflow:hidden;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 20px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:80px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-ecd9047 img{height:600px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-f601467.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 80px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:20px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-5953a6c{margin-top:0px;margin-bottom:0px;padding:50px 0px 50px 0px;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-185a38a{margin-top:20px;margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider{width:40px;background:linear-gradient(90deg, #5B7674 0%, #5B7674 100%);}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider.elementskit-style-long{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider, .elementor-235 .elementor-element.elementor-element-df37222 .elementskit-border-divider::before{height:4px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider:before{background-color:#5B7674;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star:after{background-color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:15px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:5;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{box-shadow:0px 0px 10px 0px rgba(0,0,0,0);border-style:solid;border-width:5px 5px 5px 5px;border-color:#333333;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider.simple_logo_image .single-client:hover{box-shadow:5px 10px 15px 0px rgba(0,0,0,0.1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client:hover{border-style:solid;border-color:#000000;}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client .content-image .main-image{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image .main-image{opacity:1;filter:alpha(opacity=1);}@media(max-width:1024px){.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 5em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad{text-align:center;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:45%;height:340px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:8em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:center;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-e045e00{text-align:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:300px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -35% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:300px;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}}@media(min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:40%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:60%;}}@media(max-width:1024px) and (min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:100%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:100%;}.elementor-235 .elementor-element.elementor-element-fc39988{width:100%;}.elementor-235 .elementor-element.elementor-element-f02157d{width:100%;}.elementor-235 .elementor-element.elementor-element-69e15e2{width:100%;}.elementor-235 .elementor-element.elementor-element-24781a1{width:100%;}.elementor-235 .elementor-element.elementor-element-f601467{width:100%;}}@media(max-width:767px){.elementor-235 .elementor-element.elementor-element-0034ab0{padding:0em 0em 0em 0em;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:23px;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 0em 2em 0em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:70%;height:320px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:4em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-20744e9{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:0em 4em 0em 0em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:200px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -62% 16%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:200px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 40px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-width:0px 1px 1px 1px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .swiper-wrapper{padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{min-height:80px;}}</style>		\n						<section data-id=\"0034ab0\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n													<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>				<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>						\n			<a href=\"#more\">\n						discover more\n					</a>\n		</section>\n				<section data-id=\"20744e9\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n							<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>						\n				<section data-id=\"1d82919\" data-element_type=\"section\">\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		</section>\n							<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation&#8217;s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>						\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		</section>\n				<section data-id=\"78b9ffb\" data-element_type=\"section\">\n						<section data-id=\"415127d\" data-element_type=\"section\">\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n							<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>						\n		</section>\n				<section data-id=\"e248a24\" data-element_type=\"section\">\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n		</section>\n		</section>\n				<section data-id=\"5953a6c\" data-element_type=\"section\">\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n				<section data-id=\"185a38a\" data-element_type=\"section\">\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n		</section>\n				<section data-id=\"815cc91\" data-element_type=\"section\">\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n		</section>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n		</section>\n		            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-03-06 10:16:31','2024-03-06 04:46:31','',75,'https://narendraram.com/?p=270',0,'revision','',0),(271,1,'2024-03-06 10:16:31','2024-03-06 04:46:31','<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\" more=\"\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"1280\" height=\"536\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp 1280w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-300x126.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-1024x429.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-768x322.webp 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />													\n			<h2>LIFESPAN SUPER SPECIALITY HOSPITALS</h2>				\n					<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.</p>\n<p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Personalized Care Plans                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Total Healthcare Solution                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    State of the Art Technology                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Fast Track Appointments                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Comprehensive Wellness Programs                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Community Outreach Programs                </h3>\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-768x512.webp 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies.webp 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n			<h2>LIFESPAN PHARMACIES</h2>				\n					<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.</p>\n<p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.</p>\n<p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.</p>\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65e6fce5c83df\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e6fce5c83df\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e6fce5c83df\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e6fce5c83df\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e6fce5c83df\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e6fce5c83df\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e6fce5c83df\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e6fce5c83df\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e6fce5c83df\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65e6fce5c8ead\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e6fce5c8ead\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e6fce5c8ead\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e6fce5c8ead\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e6fce5c8ead\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e6fce5c8ead\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e6fce5c8ead\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e6fce5c8ead\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e6fce5c8ead\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                <style>.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-container{min-height:90vh;}.elementor-235 .elementor-element.elementor-element-0034ab0{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, var( --e-global-color-secondary ) 0%, var( --e-global-color-23c5e7b ) 100%);}.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-background-overlay{background-image:url(\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\");background-position:center center;background-size:cover;opacity:0.05;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0 .elementor-background-overlay{filter:brightness( 85% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{height:600px;object-fit:cover;object-position:center center;opacity:1;border-style:none;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:1em 1em 1em 4em;}.elementor-235 .elementor-element.elementor-element-867b192{text-align:left;z-index:1;}.elementor-235 .elementor-element.elementor-element-867b192 img{width:15%;}.elementor-235 .elementor-element.elementor-element-867b192 > .elementor-widget-container{margin:3% 40% -45% -15%;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:left;}.elementor-235 .elementor-element.elementor-element-ddec505 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-primary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-4f64a1f-font-family ), Sans-serif;font-size:var( --e-global-typography-4f64a1f-font-size );font-weight:var( --e-global-typography-4f64a1f-font-weight );text-transform:var( --e-global-typography-4f64a1f-text-transform );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-26fe4c0-font-family ), Sans-serif;font-size:var( --e-global-typography-26fe4c0-font-size );font-weight:var( --e-global-typography-26fe4c0-font-weight );text-transform:var( --e-global-typography-26fe4c0-text-transform );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c > .elementor-widget-container{margin:15px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-right{margin-left:10px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-left{margin-right:10px;}.elementor-235 .elementor-element.elementor-element-20744e9{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:6em 1em 6em 1em;}.elementor-235 .elementor-element.elementor-element-20744e9:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-fc39988.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 3em 1em 1em;}.elementor-235 .elementor-element.elementor-element-0f20c3a{text-align:left;}.elementor-235 .elementor-element.elementor-element-0f20c3a .elementor-heading-title{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-secondary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da > .elementor-widget-container{margin:0% 0% 0% 0%;}.elementor-235 .elementor-element.elementor-element-f109edb{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f109edb > .elementor-widget-container{padding:0em 0em 0em 2em;border-style:solid;border-width:0px 0px 0px 2px;border-color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-1d82919{margin-top:-1%;margin-bottom:3%;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title{margin-bottom:0px;color:#FFFFFF;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title{margin-bottom:0px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-f4d0dc0{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0px;}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 3em;}.elementor-235 .elementor-element.elementor-element-6a6db6d{text-align:left;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{width:65%;height:500px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -70% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a{text-align:right;z-index:1;}.elementor-235 .elementor-element.elementor-element-4d5707a img{width:72%;height:500px;object-fit:cover;object-position:center center;filter:brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 42px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{overflow:hidden;padding:4em 1em 4em 1em;}.elementor-235 .elementor-element.elementor-element-d129068 > .elementor-element-populated{padding:1em 0em 1em 0em;}.elementor-235 .elementor-element.elementor-element-415127d > .elementor-container{max-width:794px;}.elementor-235 .elementor-element.elementor-element-415127d{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-f2de80c > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-ee19b6b{text-align:center;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 > .elementor-widget-container{margin:0% 0% 0% 0%;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-9e8dea5{text-align:center;}.elementor-235 .elementor-element.elementor-element-e248a24{overflow:hidden;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 20px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:80px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-ecd9047 img{height:600px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-f601467.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 80px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:20px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-5953a6c{margin-top:0px;margin-bottom:0px;padding:50px 0px 50px 0px;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-185a38a{margin-top:20px;margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider{width:40px;background:linear-gradient(90deg, #5B7674 0%, #5B7674 100%);}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider.elementskit-style-long{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider, .elementor-235 .elementor-element.elementor-element-df37222 .elementskit-border-divider::before{height:4px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider:before{background-color:#5B7674;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star:after{background-color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:15px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:5;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{box-shadow:0px 0px 10px 0px rgba(0,0,0,0);border-style:solid;border-width:5px 5px 5px 5px;border-color:#333333;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider.simple_logo_image .single-client:hover{box-shadow:5px 10px 15px 0px rgba(0,0,0,0.1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client:hover{border-style:solid;border-color:#000000;}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client .content-image .main-image{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image .main-image{opacity:1;filter:alpha(opacity=1);}@media(max-width:1024px){.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 5em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad{text-align:center;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:45%;height:340px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:8em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:center;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-e045e00{text-align:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:300px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -35% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:300px;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}}@media(min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:40%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:60%;}}@media(max-width:1024px) and (min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:100%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:100%;}.elementor-235 .elementor-element.elementor-element-fc39988{width:100%;}.elementor-235 .elementor-element.elementor-element-f02157d{width:100%;}.elementor-235 .elementor-element.elementor-element-69e15e2{width:100%;}.elementor-235 .elementor-element.elementor-element-24781a1{width:100%;}.elementor-235 .elementor-element.elementor-element-f601467{width:100%;}}@media(max-width:767px){.elementor-235 .elementor-element.elementor-element-0034ab0{padding:0em 0em 0em 0em;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:23px;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 0em 2em 0em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:70%;height:320px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:4em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-20744e9{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:0em 4em 0em 0em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:200px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -62% 16%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:200px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 40px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-width:0px 1px 1px 1px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .swiper-wrapper{padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{min-height:80px;}}</style>		\n						<section data-id=\"0034ab0\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n													<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>				<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>						\n			<a href=\"#more\">\n						discover more\n					</a>\n		</section>\n				<section data-id=\"20744e9\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n							<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>						\n				<section data-id=\"1d82919\" data-element_type=\"section\">\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		</section>\n							<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation&#8217;s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>						\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		</section>\n				<section data-id=\"78b9ffb\" data-element_type=\"section\">\n						<section data-id=\"415127d\" data-element_type=\"section\">\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n							<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>						\n		</section>\n				<section data-id=\"e248a24\" data-element_type=\"section\">\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n		</section>\n		</section>\n				<section data-id=\"5953a6c\" data-element_type=\"section\">\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n				<section data-id=\"185a38a\" data-element_type=\"section\">\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n		</section>\n				<section data-id=\"815cc91\" data-element_type=\"section\">\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n		</section>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n		</section>\n		            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-03-06 10:16:31','2024-03-06 04:46:31','',75,'https://narendraram.com/?p=271',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (272,1,'2024-03-06 10:16:31','2024-03-06 04:46:31','<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\" more=\"\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"1280\" height=\"536\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp 1280w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-300x126.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-1024x429.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-768x322.webp 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />													\n			<h2>LIFESPAN SUPER SPECIALITY HOSPITALS</h2>				\n					<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.</p>\n<p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Personalized Care Plans                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Total Healthcare Solution                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    State of the Art Technology                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Fast Track Appointments                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Comprehensive Wellness Programs                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Community Outreach Programs                </h3>\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-768x512.webp 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies.webp 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n			<h2>LIFESPAN PHARMACIES</h2>				\n					<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.</p>\n<p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.</p>\n<p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.</p>\n			<h2>SPORTS ENTREPRENEURSHIP</h2>		\n													<img src=\"https://narendraram.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65e7f5278cdd2\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e7f5278cdd2\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e7f5278cdd2\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e7f5278cdd2\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e7f5278cdd2\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e7f5278cdd2\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e7f5278cdd2\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e7f5278cdd2\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e7f5278cdd2\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65e7f5278d8af\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e7f5278d8af\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e7f5278d8af\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e7f5278d8af\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e7f5278d8af\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e7f5278d8af\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e7f5278d8af\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e7f5278d8af\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e7f5278d8af\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                <style>.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-container{min-height:90vh;}.elementor-235 .elementor-element.elementor-element-0034ab0{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, var( --e-global-color-secondary ) 0%, var( --e-global-color-23c5e7b ) 100%);}.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-background-overlay{background-image:url(\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\");background-position:center center;background-size:cover;opacity:0.05;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0 .elementor-background-overlay{filter:brightness( 85% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{height:600px;object-fit:cover;object-position:center center;opacity:1;border-style:none;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:1em 1em 1em 4em;}.elementor-235 .elementor-element.elementor-element-867b192{text-align:left;z-index:1;}.elementor-235 .elementor-element.elementor-element-867b192 img{width:15%;}.elementor-235 .elementor-element.elementor-element-867b192 > .elementor-widget-container{margin:3% 40% -45% -15%;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:left;}.elementor-235 .elementor-element.elementor-element-ddec505 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-primary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-4f64a1f-font-family ), Sans-serif;font-size:var( --e-global-typography-4f64a1f-font-size );font-weight:var( --e-global-typography-4f64a1f-font-weight );text-transform:var( --e-global-typography-4f64a1f-text-transform );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-26fe4c0-font-family ), Sans-serif;font-size:var( --e-global-typography-26fe4c0-font-size );font-weight:var( --e-global-typography-26fe4c0-font-weight );text-transform:var( --e-global-typography-26fe4c0-text-transform );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c > .elementor-widget-container{margin:15px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-right{margin-left:10px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-left{margin-right:10px;}.elementor-235 .elementor-element.elementor-element-20744e9{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:6em 1em 6em 1em;}.elementor-235 .elementor-element.elementor-element-20744e9:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-fc39988.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 3em 1em 1em;}.elementor-235 .elementor-element.elementor-element-0f20c3a{text-align:left;}.elementor-235 .elementor-element.elementor-element-0f20c3a .elementor-heading-title{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-secondary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da > .elementor-widget-container{margin:0% 0% 0% 0%;}.elementor-235 .elementor-element.elementor-element-f109edb{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f109edb > .elementor-widget-container{padding:0em 0em 0em 2em;border-style:solid;border-width:0px 0px 0px 2px;border-color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-1d82919{margin-top:-1%;margin-bottom:3%;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title{margin-bottom:0px;color:#FFFFFF;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title{margin-bottom:0px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-f4d0dc0{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0px;}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 3em;}.elementor-235 .elementor-element.elementor-element-6a6db6d{text-align:left;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{width:65%;height:500px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -70% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a{text-align:right;z-index:1;}.elementor-235 .elementor-element.elementor-element-4d5707a img{width:72%;height:500px;object-fit:cover;object-position:center center;filter:brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 42px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{overflow:hidden;padding:4em 1em 4em 1em;}.elementor-235 .elementor-element.elementor-element-d129068 > .elementor-element-populated{padding:1em 0em 1em 0em;}.elementor-235 .elementor-element.elementor-element-415127d > .elementor-container{max-width:794px;}.elementor-235 .elementor-element.elementor-element-415127d{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-f2de80c > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-ee19b6b{text-align:center;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 > .elementor-widget-container{margin:0% 0% 0% 0%;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-9e8dea5{text-align:center;}.elementor-235 .elementor-element.elementor-element-e248a24{overflow:hidden;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 20px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:80px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-ecd9047 img{height:600px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-f601467.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 80px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:20px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-5953a6c{margin-top:0px;margin-bottom:0px;padding:50px 0px 50px 0px;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-185a38a{margin-top:20px;margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider{width:40px;background:linear-gradient(90deg, #5B7674 0%, #5B7674 100%);}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider.elementskit-style-long{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider, .elementor-235 .elementor-element.elementor-element-df37222 .elementskit-border-divider::before{height:4px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider:before{background-color:#5B7674;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star:after{background-color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:15px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:5;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{box-shadow:0px 0px 10px 0px rgba(0,0,0,0);border-style:solid;border-width:5px 5px 5px 5px;border-color:#333333;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider.simple_logo_image .single-client:hover{box-shadow:5px 10px 15px 0px rgba(0,0,0,0.1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client:hover{border-style:solid;border-color:#000000;}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client .content-image .main-image{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image .main-image{opacity:1;filter:alpha(opacity=1);}@media(max-width:1024px){.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 5em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad{text-align:center;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:45%;height:340px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:8em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:center;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-e045e00{text-align:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:300px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -35% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:300px;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}}@media(min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:40%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:60%;}}@media(max-width:1024px) and (min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:100%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:100%;}.elementor-235 .elementor-element.elementor-element-fc39988{width:100%;}.elementor-235 .elementor-element.elementor-element-f02157d{width:100%;}.elementor-235 .elementor-element.elementor-element-69e15e2{width:100%;}.elementor-235 .elementor-element.elementor-element-24781a1{width:100%;}.elementor-235 .elementor-element.elementor-element-f601467{width:100%;}}@media(max-width:767px){.elementor-235 .elementor-element.elementor-element-0034ab0{padding:0em 0em 0em 0em;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:23px;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 0em 2em 0em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:70%;height:320px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:4em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-20744e9{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:0em 4em 0em 0em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:200px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -62% 16%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:200px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 40px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-width:0px 1px 1px 1px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .swiper-wrapper{padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{min-height:80px;}}</style>		\n						<section data-id=\"0034ab0\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n													<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>				<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>						\n			<a href=\"#more\">\n						discover more\n					</a>\n		</section>\n				<section data-id=\"20744e9\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n							<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>						\n				<section data-id=\"1d82919\" data-element_type=\"section\">\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		</section>\n							<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation&#8217;s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>						\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		</section>\n				<section data-id=\"78b9ffb\" data-element_type=\"section\">\n						<section data-id=\"415127d\" data-element_type=\"section\">\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n							<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>						\n		</section>\n				<section data-id=\"e248a24\" data-element_type=\"section\">\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n		</section>\n		</section>\n				<section data-id=\"5953a6c\" data-element_type=\"section\">\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n				<section data-id=\"185a38a\" data-element_type=\"section\">\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n		</section>\n				<section data-id=\"815cc91\" data-element_type=\"section\">\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n		</section>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n		</section>\n		            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-03-06 10:16:31','2024-03-06 04:46:31','',75,'https://narendraram.com/?p=272',0,'revision','',0),(273,1,'2024-03-06 10:45:34','2024-03-06 05:15:34','','Lifespan Phramacy logo','','inherit','open','closed','','lifespan-phramacy-logo','','','2024-03-06 10:45:34','2024-03-06 05:15:34','',75,'https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png',0,'attachment','image/png',0),(275,1,'2024-03-06 12:45:11','2024-03-06 07:15:11','','Lifespan Lions','','inherit','open','closed','','lifespan-lions','','','2024-03-06 12:45:11','2024-03-06 07:15:11','',75,'https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp',0,'attachment','image/webp',0),(276,1,'2024-03-06 12:52:05','2024-03-06 07:22:05','','Lifespan Vizag Warriors','','inherit','open','closed','','lifespan-vizag-warriors','','','2024-03-06 12:52:14','2024-03-06 07:22:14','',75,'https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp',0,'attachment','image/webp',0),(277,1,'2024-03-06 13:03:43','2024-03-06 07:33:43','','Lifespan N-Sports','','inherit','open','closed','','lifespan-n-sports','','','2024-03-06 13:03:43','2024-03-06 07:33:43','',75,'https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports.png',0,'attachment','image/png',0),(278,1,'2024-03-06 13:26:29','2024-03-06 07:56:29','<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\" more=\"\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"1280\" height=\"536\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp 1280w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-300x126.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-1024x429.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-768x322.webp 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />													\n			<h2>LIFESPAN SUPER SPECIALITY HOSPITALS</h2>				\n					<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.</p>\n<p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Personalized Care Plans                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Total Healthcare Solution                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    State of the Art Technology                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Fast Track Appointments                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Comprehensive Wellness Programs                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Community Outreach Programs                </h3>\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-768x512.webp 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies.webp 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n			<h2>LIFESPAN PHARMACIES</h2>				\n					<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.</p>\n<p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.</p>\n<p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.</p>\n			<h2>SPORTS ENTREPRENEURSHIP</h2>		\n													<img src=\"https://narendraram.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65e7f5278cdd2\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e7f5278cdd2\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e7f5278cdd2\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e7f5278cdd2\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e7f5278cdd2\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e7f5278cdd2\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e7f5278cdd2\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e7f5278cdd2\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e7f5278cdd2\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65e7f5278d8af\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e7f5278d8af\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e7f5278d8af\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e7f5278d8af\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e7f5278d8af\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e7f5278d8af\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e7f5278d8af\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e7f5278d8af\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e7f5278d8af\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                <style>.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-container{min-height:90vh;}.elementor-235 .elementor-element.elementor-element-0034ab0{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, var( --e-global-color-secondary ) 0%, var( --e-global-color-23c5e7b ) 100%);}.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-background-overlay{background-image:url(\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\");background-position:center center;background-size:cover;opacity:0.05;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0 .elementor-background-overlay{filter:brightness( 85% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{height:600px;object-fit:cover;object-position:center center;opacity:1;border-style:none;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:1em 1em 1em 4em;}.elementor-235 .elementor-element.elementor-element-867b192{text-align:left;z-index:1;}.elementor-235 .elementor-element.elementor-element-867b192 img{width:15%;}.elementor-235 .elementor-element.elementor-element-867b192 > .elementor-widget-container{margin:3% 40% -45% -15%;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:left;}.elementor-235 .elementor-element.elementor-element-ddec505 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-primary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-4f64a1f-font-family ), Sans-serif;font-size:var( --e-global-typography-4f64a1f-font-size );font-weight:var( --e-global-typography-4f64a1f-font-weight );text-transform:var( --e-global-typography-4f64a1f-text-transform );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-26fe4c0-font-family ), Sans-serif;font-size:var( --e-global-typography-26fe4c0-font-size );font-weight:var( --e-global-typography-26fe4c0-font-weight );text-transform:var( --e-global-typography-26fe4c0-text-transform );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c > .elementor-widget-container{margin:15px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-right{margin-left:10px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-left{margin-right:10px;}.elementor-235 .elementor-element.elementor-element-20744e9{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:6em 1em 6em 1em;}.elementor-235 .elementor-element.elementor-element-20744e9:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-fc39988.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 3em 1em 1em;}.elementor-235 .elementor-element.elementor-element-0f20c3a{text-align:left;}.elementor-235 .elementor-element.elementor-element-0f20c3a .elementor-heading-title{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-secondary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da > .elementor-widget-container{margin:0% 0% 0% 0%;}.elementor-235 .elementor-element.elementor-element-f109edb{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f109edb > .elementor-widget-container{padding:0em 0em 0em 2em;border-style:solid;border-width:0px 0px 0px 2px;border-color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-1d82919{margin-top:-1%;margin-bottom:3%;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title{margin-bottom:0px;color:#FFFFFF;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title{margin-bottom:0px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-f4d0dc0{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0px;}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 3em;}.elementor-235 .elementor-element.elementor-element-6a6db6d{text-align:left;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{width:65%;height:500px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -70% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a{text-align:right;z-index:1;}.elementor-235 .elementor-element.elementor-element-4d5707a img{width:72%;height:500px;object-fit:cover;object-position:center center;filter:brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 42px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{overflow:hidden;padding:4em 1em 4em 1em;}.elementor-235 .elementor-element.elementor-element-d129068 > .elementor-element-populated{padding:1em 0em 1em 0em;}.elementor-235 .elementor-element.elementor-element-415127d > .elementor-container{max-width:794px;}.elementor-235 .elementor-element.elementor-element-415127d{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-f2de80c > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-ee19b6b{text-align:center;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 > .elementor-widget-container{margin:0% 0% 0% 0%;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-9e8dea5{text-align:center;}.elementor-235 .elementor-element.elementor-element-e248a24{overflow:hidden;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 20px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:80px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-ecd9047 img{height:600px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-f601467.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 80px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:20px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-5953a6c{margin-top:0px;margin-bottom:0px;padding:50px 0px 50px 0px;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-185a38a{margin-top:20px;margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider{width:40px;background:linear-gradient(90deg, #5B7674 0%, #5B7674 100%);}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider.elementskit-style-long{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider, .elementor-235 .elementor-element.elementor-element-df37222 .elementskit-border-divider::before{height:4px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider:before{background-color:#5B7674;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star:after{background-color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:15px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:5;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{box-shadow:0px 0px 10px 0px rgba(0,0,0,0);border-style:solid;border-width:5px 5px 5px 5px;border-color:#333333;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider.simple_logo_image .single-client:hover{box-shadow:5px 10px 15px 0px rgba(0,0,0,0.1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client:hover{border-style:solid;border-color:#000000;}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client .content-image .main-image{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image .main-image{opacity:1;filter:alpha(opacity=1);}@media(max-width:1024px){.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 5em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad{text-align:center;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:45%;height:340px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:8em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:center;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-e045e00{text-align:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:300px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -35% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:300px;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}}@media(min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:40%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:60%;}}@media(max-width:1024px) and (min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:100%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:100%;}.elementor-235 .elementor-element.elementor-element-fc39988{width:100%;}.elementor-235 .elementor-element.elementor-element-f02157d{width:100%;}.elementor-235 .elementor-element.elementor-element-69e15e2{width:100%;}.elementor-235 .elementor-element.elementor-element-24781a1{width:100%;}.elementor-235 .elementor-element.elementor-element-f601467{width:100%;}}@media(max-width:767px){.elementor-235 .elementor-element.elementor-element-0034ab0{padding:0em 0em 0em 0em;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:23px;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 0em 2em 0em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:70%;height:320px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:4em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-20744e9{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:0em 4em 0em 0em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:200px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -62% 16%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:200px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 40px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-width:0px 1px 1px 1px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .swiper-wrapper{padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{min-height:80px;}}</style>		\n						<section data-id=\"0034ab0\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n													<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>				<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>						\n			<a href=\"#more\">\n						discover more\n					</a>\n		</section>\n				<section data-id=\"20744e9\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n							<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>						\n				<section data-id=\"1d82919\" data-element_type=\"section\">\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		</section>\n							<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation&#8217;s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>						\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		</section>\n				<section data-id=\"78b9ffb\" data-element_type=\"section\">\n						<section data-id=\"415127d\" data-element_type=\"section\">\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n							<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>						\n		</section>\n				<section data-id=\"e248a24\" data-element_type=\"section\">\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n		</section>\n		</section>\n				<section data-id=\"5953a6c\" data-element_type=\"section\">\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n				<section data-id=\"185a38a\" data-element_type=\"section\">\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n		</section>\n				<section data-id=\"815cc91\" data-element_type=\"section\">\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n		</section>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n		</section>\n		            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-03-06 13:26:29','2024-03-06 07:56:29','',75,'https://narendraram.com/?p=278',0,'revision','',0),(279,1,'2024-03-06 13:26:29','2024-03-06 07:56:29','<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\" more=\"\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"1280\" height=\"536\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp 1280w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-300x126.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-1024x429.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-768x322.webp 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />													\n			<h2>LIFESPAN SUPER SPECIALITY HOSPITALS</h2>				\n					<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.</p>\n<p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Personalized Care Plans                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Total Healthcare Solution                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    State of the Art Technology                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Fast Track Appointments                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Comprehensive Wellness Programs                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Community Outreach Programs                </h3>\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-768x512.webp 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies.webp 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n			<h2>LIFESPAN PHARMACIES</h2>				\n					<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.</p>\n<p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.</p>\n<p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.</p>\n			<h2>SPORTS ENTREPRENEURSHIP</h2>		\n													<img src=\"https://narendraram.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65e7f5278cdd2\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e7f5278cdd2\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e7f5278cdd2\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e7f5278cdd2\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e7f5278cdd2\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e7f5278cdd2\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e7f5278cdd2\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e7f5278cdd2\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e7f5278cdd2\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65e7f5278d8af\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e7f5278d8af\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e7f5278d8af\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e7f5278d8af\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e7f5278d8af\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e7f5278d8af\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e7f5278d8af\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e7f5278d8af\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e7f5278d8af\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                <style>.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-container{min-height:90vh;}.elementor-235 .elementor-element.elementor-element-0034ab0{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, var( --e-global-color-secondary ) 0%, var( --e-global-color-23c5e7b ) 100%);}.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-background-overlay{background-image:url(\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\");background-position:center center;background-size:cover;opacity:0.05;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0 .elementor-background-overlay{filter:brightness( 85% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{height:600px;object-fit:cover;object-position:center center;opacity:1;border-style:none;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:1em 1em 1em 4em;}.elementor-235 .elementor-element.elementor-element-867b192{text-align:left;z-index:1;}.elementor-235 .elementor-element.elementor-element-867b192 img{width:15%;}.elementor-235 .elementor-element.elementor-element-867b192 > .elementor-widget-container{margin:3% 40% -45% -15%;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:left;}.elementor-235 .elementor-element.elementor-element-ddec505 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-primary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-4f64a1f-font-family ), Sans-serif;font-size:var( --e-global-typography-4f64a1f-font-size );font-weight:var( --e-global-typography-4f64a1f-font-weight );text-transform:var( --e-global-typography-4f64a1f-text-transform );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-26fe4c0-font-family ), Sans-serif;font-size:var( --e-global-typography-26fe4c0-font-size );font-weight:var( --e-global-typography-26fe4c0-font-weight );text-transform:var( --e-global-typography-26fe4c0-text-transform );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c > .elementor-widget-container{margin:15px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-right{margin-left:10px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-left{margin-right:10px;}.elementor-235 .elementor-element.elementor-element-20744e9{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:6em 1em 6em 1em;}.elementor-235 .elementor-element.elementor-element-20744e9:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-fc39988.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 3em 1em 1em;}.elementor-235 .elementor-element.elementor-element-0f20c3a{text-align:left;}.elementor-235 .elementor-element.elementor-element-0f20c3a .elementor-heading-title{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-secondary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da > .elementor-widget-container{margin:0% 0% 0% 0%;}.elementor-235 .elementor-element.elementor-element-f109edb{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f109edb > .elementor-widget-container{padding:0em 0em 0em 2em;border-style:solid;border-width:0px 0px 0px 2px;border-color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-1d82919{margin-top:-1%;margin-bottom:3%;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title{margin-bottom:0px;color:#FFFFFF;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title{margin-bottom:0px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-f4d0dc0{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0px;}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 3em;}.elementor-235 .elementor-element.elementor-element-6a6db6d{text-align:left;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{width:65%;height:500px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -70% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a{text-align:right;z-index:1;}.elementor-235 .elementor-element.elementor-element-4d5707a img{width:72%;height:500px;object-fit:cover;object-position:center center;filter:brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 42px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{overflow:hidden;padding:4em 1em 4em 1em;}.elementor-235 .elementor-element.elementor-element-d129068 > .elementor-element-populated{padding:1em 0em 1em 0em;}.elementor-235 .elementor-element.elementor-element-415127d > .elementor-container{max-width:794px;}.elementor-235 .elementor-element.elementor-element-415127d{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-f2de80c > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-ee19b6b{text-align:center;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 > .elementor-widget-container{margin:0% 0% 0% 0%;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-9e8dea5{text-align:center;}.elementor-235 .elementor-element.elementor-element-e248a24{overflow:hidden;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 20px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:80px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-ecd9047 img{height:600px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-f601467.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 80px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:20px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-5953a6c{margin-top:0px;margin-bottom:0px;padding:50px 0px 50px 0px;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-185a38a{margin-top:20px;margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider{width:40px;background:linear-gradient(90deg, #5B7674 0%, #5B7674 100%);}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider.elementskit-style-long{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider, .elementor-235 .elementor-element.elementor-element-df37222 .elementskit-border-divider::before{height:4px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider:before{background-color:#5B7674;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star:after{background-color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:15px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:5;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{box-shadow:0px 0px 10px 0px rgba(0,0,0,0);border-style:solid;border-width:5px 5px 5px 5px;border-color:#333333;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider.simple_logo_image .single-client:hover{box-shadow:5px 10px 15px 0px rgba(0,0,0,0.1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client:hover{border-style:solid;border-color:#000000;}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client .content-image .main-image{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image .main-image{opacity:1;filter:alpha(opacity=1);}@media(max-width:1024px){.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 5em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad{text-align:center;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:45%;height:340px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:8em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:center;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-e045e00{text-align:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:300px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -35% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:300px;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}}@media(min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:40%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:60%;}}@media(max-width:1024px) and (min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:100%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:100%;}.elementor-235 .elementor-element.elementor-element-fc39988{width:100%;}.elementor-235 .elementor-element.elementor-element-f02157d{width:100%;}.elementor-235 .elementor-element.elementor-element-69e15e2{width:100%;}.elementor-235 .elementor-element.elementor-element-24781a1{width:100%;}.elementor-235 .elementor-element.elementor-element-f601467{width:100%;}}@media(max-width:767px){.elementor-235 .elementor-element.elementor-element-0034ab0{padding:0em 0em 0em 0em;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:23px;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 0em 2em 0em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:70%;height:320px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:4em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-20744e9{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:0em 4em 0em 0em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:200px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -62% 16%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:200px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 40px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-width:0px 1px 1px 1px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .swiper-wrapper{padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{min-height:80px;}}</style>		\n						<section data-id=\"0034ab0\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n													<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>				<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>						\n			<a href=\"#more\">\n						discover more\n					</a>\n		</section>\n				<section data-id=\"20744e9\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n							<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>						\n				<section data-id=\"1d82919\" data-element_type=\"section\">\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		</section>\n							<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation&#8217;s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>						\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		</section>\n				<section data-id=\"78b9ffb\" data-element_type=\"section\">\n						<section data-id=\"415127d\" data-element_type=\"section\">\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n							<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>						\n		</section>\n				<section data-id=\"e248a24\" data-element_type=\"section\">\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n		</section>\n		</section>\n				<section data-id=\"5953a6c\" data-element_type=\"section\">\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n				<section data-id=\"185a38a\" data-element_type=\"section\">\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n		</section>\n				<section data-id=\"815cc91\" data-element_type=\"section\">\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n		</section>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n		</section>\n		            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-03-06 13:26:29','2024-03-06 07:56:29','',75,'https://narendraram.com/?p=279',0,'revision','',0),(280,1,'2024-03-06 13:26:30','2024-03-06 07:56:30','<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\" more=\"\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"1280\" height=\"536\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp 1280w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-300x126.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-1024x429.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-768x322.webp 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />													\n			<h2>LIFESPAN SUPER SPECIALITY HOSPITALS</h2>				\n					<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.</p>\n<p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Personalized Care Plans                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Total Healthcare Solution                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    State of the Art Technology                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Fast Track Appointments                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Comprehensive Wellness Programs                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Community Outreach Programs                </h3>\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-768x512.webp 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies.webp 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n			<h2>LIFESPAN PHARMACIES</h2>				\n					<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.</p>\n<p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.</p>\n<p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.</p>\n			<h2>SPORTS ENTREPRENEURSHIP</h2>		\n													<img width=\"800\" height=\"334\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-300x125.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-768x320.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        WINNER OF DPCL FIRST SEASON\n                    </h3>\n                        We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.                    \n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        PROUD OWNER OF VIZAG WARRIORS\n                    </h3>\n                        N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.                    \n			<h6>how it works ?</h6>		\n			<h2>how do we approach ?</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n			<h3>1</h3>		\n				<h5>\n						Holistic Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>2</h3>		\n				<h5>\n						Goal-Oriented Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.					</p>\n			<h3>3</h3>		\n				<h5>\n						Strengths-Based Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper.					</p>\n			<h3>4</h3>		\n				<h5>\n						Mindset and Transformational Approach					\n				</h5>\n									<p>\n						Lorem ipsum dolor sit amet, consectetur adipiscing elit. 					</p>\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<h6>why choose us ?</h6>		\n			<h2>Empowering You to Embrace Change &amp; Create Lasting Results</h2>		\n                            Client Satisfaction\n                        <!-- .skill-bar-content END -->\n                                    0%\n                        <!-- .skill-bar END -->\n                                    <!-- .single-skill-bar END -->\n            <!-- .skillbar-group END -->\n		<p>Aenean metus mi, elementum id vestibulum eget, tempus eget nunc. In at leo at augue scelerisque condimentum et ut leo. Nunc tortor augue, facilisis porta lacus condimentum, sodales vulputate diam.</p>		\n			<a href=\"#\">\n						join us now\n					</a>\n				<h5>\n						Experience & Expertise					\n				</h5>\n				<h5>\n						Personalized Approach					\n				</h5>\n				<h5>\n						Support & Accountability					\n				</h5>\n			<h6>Pricing Plan</h6>		\n			<h2>Experience Breakthroughs &amp; Find Purpose in Every Session</h2>		\n			<h4>Basic Package</h4>		\n			<h2>$59,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>premium package</h4>		\n			<h2>$79,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<h4>Pro Package</h4>		\n			<h2>$99,99</h2>		\n			<h6>/month</h6>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus.</p>		\n					<ul>\n							<li>\n										Interdum et malesuada fames\n									</li>\n								<li>\n										Aliquam suscipit lacus\n									</li>\n								<li>\n										Class aptent taciti sociosqu\n									</li>\n								<li>\n										Pellentesque eget quam sed\n									</li>\n						</ul>\n			<a href=\"#\">\n						Join now\n					</a>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-counter .elementor-counter-number-wrapper{display:flex;font-size:69px;font-weight:600;line-height:1}.elementor-counter .elementor-counter-number-prefix,.elementor-counter .elementor-counter-number-suffix{flex-grow:1;white-space:pre-wrap}.elementor-counter .elementor-counter-number-prefix{text-align:right}.elementor-counter .elementor-counter-number-suffix{text-align:left}.elementor-counter .elementor-counter-title{text-align:center;font-size:19px;font-weight:400;line-height:2.5}</style>		\n				0\n				k\n			<p>Happy Client </p>		\n				0\n				+ More\n			<p>Years Has Coaching</p>		\n				0\n				+\n			<p>Book Publishing</p>		\n			<h6>client testimonial</h6>		\n			<h2>what our client say about our coaching ?</h2>		\n															<p>Working with my life coach has been a game-changer! Their guidance and support have helped me overcome self-doubt and discover my true potential. I\'ve achieved goals I never thought possible and gained the confidence to pursue my dreams. I highly recommend their transformative coaching services</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Dyas Kardinal</strong>\n										Designation\n															<p>I can\'t thank my life coach enough for the positive impact they\'ve had on my life. Their insightful questions, active listening, and strategic guidance have helped me gain clarity, set meaningful goals, and make significant progress. With their support, I\'ve experienced personal growth and learned valuable skills to navigate life\'s challenges. I am forever grateful for their coaching expertise</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Elsa Verina</strong>\n										Designation\n															<p>Working with my life coach has been a life-changing experience. Their compassionate approach, combined with their deep understanding of human psychology, has helped me break free from limiting beliefs and develop a growth mindset. They\'ve provided invaluable tools and techniques to overcome obstacles, and I now feel empowered to create the life I\'ve always wanted. I highly recommend their coaching services to anyone seeking personal transformation</p>\n											<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" />										\n										<strong>Harumi Hava</strong>\n										Designation\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n													<img src=\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\" title=\"\" alt=\"\" loading=\"lazy\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image-carousel .swiper,.elementor-widget-image-carousel .swiper-container{position:static}.elementor-widget-image-carousel .swiper-container .swiper-slide figure,.elementor-widget-image-carousel .swiper .swiper-slide figure{line-height:inherit}.elementor-widget-image-carousel .swiper-slide{text-align:center}.elementor-image-carousel-wrapper:not(.swiper-container-initialized):not(.swiper-initialized) .swiper-slide{max-width:calc(100% / var(--e-image-carousel-slides-to-show, 3))}</style>		\n								<a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTQsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC90YWxrLWFmdGVyLXNlbWluYXItMjAyMS0wOS0yNC0wMy0zNC00Mi11dGMuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" alt=\"talk-after-seminar-2021-09-24-03-34-42-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTUsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jb25mZXJlbmNlLXNlbWluYXItbWVldGluZy1yb29tLTIwMjItMDYtMTUtMjMtNTItNDUtdXRjLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" alt=\"conference-seminar-meeting-room-2022-06-15-23-52-45-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTYsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9idXNpbmVzcy1wZW9wbGUtZHVyaW5nLXRoZS1jb25mZXJlbmNlLWluLXRoZS1hdWRpZS0yMDIxLTEyLTI3LTIzLTI4LTUwLXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" alt=\"business-people-during-the-conference-in-the-audie-2021-12-27-23-28-50-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTcsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9zaG90LW9mLWEtZ3JvdXAtb2YtYnVzaW5lc3NwZW9wbGUtYXR0ZW5kaW5nLWEtY29uZi0yMDIyLTA5LTE0LTAxLTI4LTM5LXV0Yy5qcGciLCJzbGlkZXNob3ciOiIzZjYzYmVhYiJ9\" href=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" alt=\"shot-of-a-group-of-businesspeople-attending-a-conf-2022-09-14-01-28-39-utc.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"audience-applauding-at-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTgsInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9hdWRpZW5jZS1hcHBsYXVkaW5nLWF0LXNlbWluYXIuanBnIiwic2xpZGVzaG93IjoiM2Y2M2JlYWIifQ%3D%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/audience-applauding-at-seminar.jpg\" alt=\"audience-applauding-at-seminar.jpg\" /></figure></a><a data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-slideshow=\"3f63beab\" data-elementor-lightbox-title=\"card-mockup-in-seminar.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6NTksInVybCI6Imh0dHBzOlwvXC9uYXJlbmRyYXJhbS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjRcLzAyXC9jYXJkLW1vY2t1cC1pbi1zZW1pbmFyLmpwZyIsInNsaWRlc2hvdyI6IjNmNjNiZWFiIn0%3D\" href=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\"><figure><img src=\"https://narendraram.com/wp-content/uploads/2024/02/card-mockup-in-seminar.jpg\" alt=\"card-mockup-in-seminar.jpg\" /></figure></a>			\n			<h6>FREQUENTLY ASKED QUESTIONS</h6>		\n			<h2>our most common question</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n                        <a href=\"#collapse-ce999ec65e821ae4b13c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e821ae4b13c\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e821ae4b13c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            What is life coaching and how can it benefit me?\n                                                    </a>\n                            <p>Life coaching is a collaborative process where a trained professional helps individuals clarify goals, overcome challenges, and create positive changes in their personal and professional lives. It can benefit you by providing guidance, support, and accountability, helping you gain clarity, set goals, and navigate life\'s transitions more effectively.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e821ae4b13c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e821ae4b13c\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e821ae4b13c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How long does the coaching process typically last?\n                                                    </a>\n                            <p>The duration of the coaching process can vary depending on individual needs and goals. Some clients may achieve their desired outcomes in a few sessions, while others may prefer ongoing coaching for an extended period. A typical coaching engagement may range from a few months to a year or more.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e821ae4b13c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e821ae4b13c\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e821ae4b13c\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How often do coaching sessions take place?\n                                                    </a>\n                            <p>Coaching sessions are typically scheduled on a regular basis, usually once or twice a month. The frequency of sessions can be customized to fit your needs and availability. Consistency in meeting with your coach helps maintain momentum and progress towards your goals.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-ce999ec65e821ae4bbe9\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-ce999ec65e821ae4bbe9\" aria-expanded=\"true\" aria-controls=\"Collapse-ce999ec65e821ae4bbe9\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Is coaching confidential?\n                                                    </a>\n                            <p>Yes, coaching is confidential. Coaches adhere to a strict code of ethics that includes maintaining client confidentiality. Your coach will create a safe and non-judgmental space for you to discuss your thoughts, feelings, and goals without fear of your information being shared.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-5c0a66465e821ae4bbe9\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-5c0a66465e821ae4bbe9\" aria-expanded=\"false\" aria-controls=\"Collapse-5c0a66465e821ae4bbe9\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            How do I choose the right life coach for me?\n                                                    </a>\n                            <p>Choosing the right life coach is an important decision. It\'s recommended to research and consider factors such as the coach\'s qualifications, experience, coaching approach, and client testimonials. It can also be helpful to have an initial consultation or discovery call with the coach to assess compatibility and ensure a good fit.</p>                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-a105d2665e821ae4bbe9\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-a105d2665e821ae4bbe9\" aria-expanded=\"false\" aria-controls=\"Collapse-a105d2665e821ae4bbe9\">\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                            Can life coaching help me if I&#039;m feeling stuck?\n                                                    </a>\n                            <p>Absolutely! Life coaching is designed to help individuals who are feeling stuck, uncertain, or seeking clarity. Coaches can assist you in exploring your values, passions, and strengths, and help you gain clarity on your life direction. They provide guidance and tools to help you make informed</p>                        \n                <!-- .elementskit-card END -->\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>blog & article</h6>		\n			<h2>read our blog &amp; article that might help you</h2>		\n			<a href=\"#\">\n						all blog & article\n					</a>\n													<!-- .elementskit-entry-header END -->\n																				<h2>\n					<a href=\"https://narendraram.com/?p=1\">\n						Hello world!					</a>\n				</h2>\n											February 5, 2024										\n																																							<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n																						                                                    <!-- .elementskit-post-body END -->\n			<h6>get in touch</h6>		\n			<h2>have any thing to ask ? let\'s talk we always ready</h2>		\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>		\n				<p>\n						Phone					\n				</p>\n									<p>\n						99 Roving St., Big City, PKU 2345					</p>\n				<p>\n						Email					\n				</p>\n									<p>\n						hello@awesomesite.com					</p>\n				<p>\n						Phone					\n				</p>\n									<p>\n						+123-456-7890					</p>\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container{height:100%;width:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty,.e-con>.elementor-widget-spacer.elementor-widget-empty{position:relative;min-height:22px;min-width:22px}.e-con-inner>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon,.e-con>.elementor-widget-spacer.elementor-widget-empty .elementor-widget-empty-icon{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto;padding:0;width:22px;height:22px}</style>		\n			            <form id=\"rform\" data-form=\"235\">\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#FF0000\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z\" />\n                        </svg>\n                            <h5>Required Login</h5>\n                            Please Login for Submit Form.\n                            <a type=\"button\">Close</a>\n                        <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"35\" height=\"35\" fill=\"#4CAF50\" viewBox=\"0 0 16 16\">\n                            <path d=\"M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z\" />\n                        </svg>\n                            <h5>Success</h5>\n                            <a type=\"button\">Close</a>\n                <style>.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-container{min-height:90vh;}.elementor-235 .elementor-element.elementor-element-0034ab0{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, var( --e-global-color-secondary ) 0%, var( --e-global-color-23c5e7b ) 100%);}.elementor-235 .elementor-element.elementor-element-0034ab0 > .elementor-background-overlay{background-image:url(\"https://ls-narendraram.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/images/placeholder.png\");background-position:center center;background-size:cover;opacity:0.05;transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-235 .elementor-element.elementor-element-0034ab0 .elementor-background-overlay{filter:brightness( 85% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{height:600px;object-fit:cover;object-position:center center;opacity:1;border-style:none;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:1em 1em 1em 4em;}.elementor-235 .elementor-element.elementor-element-867b192{text-align:left;z-index:1;}.elementor-235 .elementor-element.elementor-element-867b192 img{width:15%;}.elementor-235 .elementor-element.elementor-element-867b192 > .elementor-widget-container{margin:3% 40% -45% -15%;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:left;}.elementor-235 .elementor-element.elementor-element-ddec505 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-primary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-4f64a1f-font-family ), Sans-serif;font-size:var( --e-global-typography-4f64a1f-font-size );font-weight:var( --e-global-typography-4f64a1f-font-weight );text-transform:var( --e-global-typography-4f64a1f-text-transform );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-26fe4c0-font-family ), Sans-serif;font-size:var( --e-global-typography-26fe4c0-font-size );font-weight:var( --e-global-typography-26fe4c0-font-weight );text-transform:var( --e-global-typography-26fe4c0-text-transform );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c > .elementor-widget-container{margin:15px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-right{margin-left:10px;}.elementor-235 .elementor-element.elementor-element-320e13d .elementor-button .elementor-align-icon-left{margin-right:10px;}.elementor-235 .elementor-element.elementor-element-20744e9{overflow:hidden;transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;padding:6em 1em 6em 1em;}.elementor-235 .elementor-element.elementor-element-20744e9:not(.elementor-motion-effects-element-type-background), .elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-20744e9 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-fc39988.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 3em 1em 1em;}.elementor-235 .elementor-element.elementor-element-0f20c3a{text-align:left;}.elementor-235 .elementor-element.elementor-element-0f20c3a .elementor-heading-title{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{color:var( --e-global-color-secondary );margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da > .elementor-widget-container{margin:0% 0% 0% 0%;}.elementor-235 .elementor-element.elementor-element-f109edb{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f109edb > .elementor-widget-container{padding:0em 0em 0em 2em;border-style:solid;border-width:0px 0px 0px 2px;border-color:var( --e-global-color-1b0ff90 );}.elementor-235 .elementor-element.elementor-element-1d82919{margin-top:-1%;margin-bottom:3%;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title{margin-bottom:0px;color:#FFFFFF;}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-wrapper{text-align:left;}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title{margin-bottom:0px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-family:var( --e-global-typography-7e08b7a-font-family ), Sans-serif;font-size:var( --e-global-typography-7e08b7a-font-size );font-weight:var( --e-global-typography-7e08b7a-font-weight );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-description{color:#DFD2D2;}.elementor-235 .elementor-element.elementor-element-f4d0dc0{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:0px;}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 3em;}.elementor-235 .elementor-element.elementor-element-6a6db6d{text-align:left;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{width:65%;height:500px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -70% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a{text-align:right;z-index:1;}.elementor-235 .elementor-element.elementor-element-4d5707a img{width:72%;height:500px;object-fit:cover;object-position:center center;filter:brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );border-radius:20px 20px 20px 20px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 42px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{overflow:hidden;padding:4em 1em 4em 1em;}.elementor-235 .elementor-element.elementor-element-d129068 > .elementor-element-populated{padding:1em 0em 1em 0em;}.elementor-235 .elementor-element.elementor-element-415127d > .elementor-container{max-width:794px;}.elementor-235 .elementor-element.elementor-element-415127d{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-f2de80c > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-ee19b6b{text-align:center;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{margin:0px 0px 0px 0px;font-family:var( --e-global-typography-5ea2e2b-font-family ), Sans-serif;font-size:var( --e-global-typography-5ea2e2b-font-size );font-weight:var( --e-global-typography-5ea2e2b-font-weight );text-transform:var( --e-global-typography-5ea2e2b-text-transform );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:var( --e-global-color-accent );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-family:var( --e-global-typography-6cfe23f-font-family ), Sans-serif;font-size:var( --e-global-typography-6cfe23f-font-size );font-weight:var( --e-global-typography-6cfe23f-font-weight );text-transform:var( --e-global-typography-6cfe23f-text-transform );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 > .elementor-widget-container{margin:0% 0% 0% 0%;padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-9e8dea5{text-align:center;}.elementor-235 .elementor-element.elementor-element-e248a24{overflow:hidden;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-69e15e2 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-df2a5ca.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 20px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-02aaab6.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:80px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-ecd9047 img{height:600px;object-fit:cover;object-position:center center;border-radius:20px 20px 20px 20px;}.elementor-bc-flex-widget .elementor-235 .elementor-element.elementor-element-f601467.elementor-column .elementor-widget-wrap{align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467.elementor-column.elementor-element[data-element_type=\"column\"] > .elementor-widget-wrap.elementor-element-populated{align-content:center;align-items:center;}.elementor-235 .elementor-element.elementor-element-f601467 > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-bb47e74.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 80px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-primary );fill:var( --e-global-color-secondary );color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon, .elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-default .elementor-icon{fill:var( --e-global-color-primary );color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-235 .elementor-element.elementor-element-a86503c.elementor-view-framed .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c{--icon-box-icon-margin:20px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon{font-size:30px;border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title{margin-bottom:5px;color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-family:var( --e-global-typography-0591894-font-family ), Sans-serif;font-size:var( --e-global-typography-0591894-font-size );font-weight:var( --e-global-typography-0591894-font-weight );text-transform:var( --e-global-typography-0591894-text-transform );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-description{color:var( --e-global-color-secondary );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:20px 0px 0px 0px;padding:1em 1em 1em 1em;background-color:var( --e-global-color-accent );border-radius:10px 10px 10px 10px;}.elementor-235 .elementor-element.elementor-element-5953a6c{margin-top:0px;margin-bottom:0px;padding:50px 0px 50px 0px;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-743b16e > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-185a38a{margin-top:20px;margin-bottom:20px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-section-title:hover > span{color:#000000;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider{width:40px;background:linear-gradient(90deg, #5B7674 0%, #5B7674 100%);}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider.elementskit-style-long{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star{width:40px;height:4px;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider, .elementor-235 .elementor-element.elementor-element-df37222 .elementskit-border-divider::before{height:4px;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-divider:before{background-color:#5B7674;color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 .elementskit-section-title-wraper .elementskit-border-star:after{background-color:#5B7674;}.elementor-235 .elementor-element.elementor-element-df37222 > .elementor-widget-container{margin:0px 0px 40px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-64f48b9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-64f48b9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-0e54eb9.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .elementor-widget-container, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con, .elementor-235 .elementor-element.elementor-element-1926f0d.ekit-equal-height-enable .ekit-wid-con .elementskit-info-image-box{height:100%;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.style-modern .elementskit-box-body{width:90%;margin-top:-20px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box  .elementskit-box-header img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card >  img{opacity:1;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box:hover  .elementskit-box-header img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box.elementskit-thumb-card:hover >  img{opacity:1;transform:scale(1.1);}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-body{border-style:solid;border-width:0px 1px 1px 1px;border-color:#f5f5f5;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title{margin:0px 0px 20px 0px;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title {color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title a{color:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-info-box-title svg path{stroke:#000000;fill:#000000;}.elementor-235 .elementor-element.elementor-element-1926f0d .elementskit-info-image-box .elementskit-box-style-content{margin:0px 0px 14px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:15px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:5;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{box-shadow:0px 0px 10px 0px rgba(0,0,0,0);border-style:solid;border-width:5px 5px 5px 5px;border-color:#333333;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider.simple_logo_image .single-client:hover{box-shadow:5px 10px 15px 0px rgba(0,0,0,0.1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client:hover{border-style:solid;border-color:#000000;}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client .content-image .main-image{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image img{opacity:1;filter:alpha(opacity=1);}.elementor-235 .elementor-element.elementor-element-58126a7 .simple_logo_image .single-client:hover .content-image .main-image{opacity:1;filter:alpha(opacity=1);}@media(max-width:1024px){.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 1em 5em 1em;}.elementor-235 .elementor-element.elementor-element-62ff8ad{text-align:center;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:45%;height:340px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:8em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-ddec505{text-align:center;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-e045e00{text-align:center;}.elementor-235 .elementor-element.elementor-element-fc39988 > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:1em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:300px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -35% 0%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:300px;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}}@media(min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:40%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:60%;}}@media(max-width:1024px) and (min-width:768px){.elementor-235 .elementor-element.elementor-element-0f999af{width:100%;}.elementor-235 .elementor-element.elementor-element-71d4d43{width:100%;}.elementor-235 .elementor-element.elementor-element-fc39988{width:100%;}.elementor-235 .elementor-element.elementor-element-f02157d{width:100%;}.elementor-235 .elementor-element.elementor-element-69e15e2{width:100%;}.elementor-235 .elementor-element.elementor-element-24781a1{width:100%;}.elementor-235 .elementor-element.elementor-element-f601467{width:100%;}}@media(max-width:767px){.elementor-235 .elementor-element.elementor-element-0034ab0{padding:0em 0em 0em 0em;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute){margin-bottom:23px;}.elementor-235 .elementor-element.elementor-element-0f999af > .elementor-element-populated{padding:1em 0em 2em 0em;}.elementor-235 .elementor-element.elementor-element-62ff8ad img{width:70%;height:320px;}.elementor-235 .elementor-element.elementor-element-71d4d43 > .elementor-element-populated{padding:4em 1em 1em 1em;}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-4f64a1f-font-size );line-height:var( --e-global-typography-4f64a1f-line-height );letter-spacing:var( --e-global-typography-4f64a1f-letter-spacing );word-spacing:var( --e-global-typography-4f64a1f-word-spacing );}.elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-3ab466c .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-26fe4c0-font-size );line-height:var( --e-global-typography-26fe4c0-line-height );letter-spacing:var( --e-global-typography-26fe4c0-letter-spacing );word-spacing:var( --e-global-typography-26fe4c0-word-spacing );}.elementor-235 .elementor-element.elementor-element-20744e9{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-20b88da .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-37ca892 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-e9cd298 .elementor-icon-box-title a{font-size:var( --e-global-typography-7e08b7a-font-size );line-height:var( --e-global-typography-7e08b7a-line-height );letter-spacing:var( --e-global-typography-7e08b7a-letter-spacing );word-spacing:var( --e-global-typography-7e08b7a-word-spacing );}.elementor-235 .elementor-element.elementor-element-f02157d > .elementor-element-populated{padding:0em 4em 0em 0em;}.elementor-235 .elementor-element.elementor-element-6a6db6d img{height:200px;}.elementor-235 .elementor-element.elementor-element-6a6db6d > .elementor-widget-container{margin:0% 0% -62% 16%;}.elementor-235 .elementor-element.elementor-element-4d5707a img{height:200px;}.elementor-235 .elementor-element.elementor-element-4d5707a > .elementor-widget-container{margin:0px 0px 0px 40px;}.elementor-235 .elementor-element.elementor-element-78b9ffb{padding:2em 1em 2em 1em;}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title{font-size:var( --e-global-typography-5ea2e2b-font-size );line-height:var( --e-global-typography-5ea2e2b-line-height );letter-spacing:var( --e-global-typography-5ea2e2b-letter-spacing );word-spacing:var( --e-global-typography-5ea2e2b-word-spacing );}.elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title span:last-child, .elementor-235 .elementor-element.elementor-element-5d08e68 .elementskit-section-title-wraper .elementskit-section-title > span{font-size:var( --e-global-typography-6cfe23f-font-size );line-height:var( --e-global-typography-6cfe23f-line-height );letter-spacing:var( --e-global-typography-6cfe23f-letter-spacing );word-spacing:var( --e-global-typography-6cfe23f-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-df2a5ca .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-df2a5ca > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-02aaab6 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-02aaab6 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-bb47e74 .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-bb47e74 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title, .elementor-235 .elementor-element.elementor-element-a86503c .elementor-icon-box-title a{font-size:var( --e-global-typography-0591894-font-size );line-height:var( --e-global-typography-0591894-line-height );letter-spacing:var( --e-global-typography-0591894-letter-spacing );word-spacing:var( --e-global-typography-0591894-word-spacing );}.elementor-235 .elementor-element.elementor-element-a86503c > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-0e54eb9 .elementskit-info-image-box .elementskit-box-body{border-width:0px 1px 1px 1px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider{--ekit_client_logo_left_right_spacing:10px;}.elementor-235 .elementor-element.elementor-element-58126a7 .ekit-price-card-slider{--ekit_client_logo_slidetosho:2;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .swiper-wrapper{padding:0px 0px 0px 0px;}.elementor-235 .elementor-element.elementor-element-58126a7 .elementskit-clients-slider .single-client{min-height:80px;}}</style>		\n						<section data-id=\"0034ab0\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;gradient&quot;}\">\n													<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style>				<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>						\n			<a href=\"#more\">\n						discover more\n					</a>\n		</section>\n				<section data-id=\"20744e9\" data-element_type=\"section\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n							<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>						\n				<section data-id=\"1d82919\" data-element_type=\"section\">\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		</section>\n							<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation&#8217;s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>						\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n		</section>\n				<section data-id=\"78b9ffb\" data-element_type=\"section\">\n						<section data-id=\"415127d\" data-element_type=\"section\">\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n							<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>						\n		</section>\n				<section data-id=\"e248a24\" data-element_type=\"section\">\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n		</section>\n		</section>\n				<section data-id=\"5953a6c\" data-element_type=\"section\">\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n				<section data-id=\"185a38a\" data-element_type=\"section\">\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n		</section>\n				<section data-id=\"815cc91\" data-element_type=\"section\">\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n		</section>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n		</section>\n		            </form>','Home New','','inherit','closed','closed','','75-revision-v1','','','2024-03-06 13:26:30','2024-03-06 07:56:30','',75,'https://narendraram.com/?p=280',0,'revision','',0),(282,1,'2024-03-06 13:34:22','2024-03-06 08:04:22','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-03-06 13:34:22','2024-03-06 08:04:22','',182,'https://narendraram.com/?p=282',0,'revision','',0),(283,1,'2024-03-06 13:34:22','2024-03-06 08:04:22','<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 07-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-03-06 13:34:22','2024-03-06 08:04:22','',182,'https://narendraram.com/?p=283',0,'revision','',0),(284,1,'2024-03-06 13:34:22','2024-03-06 08:04:22','<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"1280\" height=\"536\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp 1280w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-300x126.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-1024x429.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-768x322.webp 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />													\n			<h2>LIFESPAN SUPER SPECIALITY HOSPITALS</h2>				\n					<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.</p>\n<p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Personalized Care Plans                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Total Healthcare Solution                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    State of the Art Technology                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Fast Track Appointments                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Comprehensive Wellness Programs                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Community Outreach Programs                </h3>\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-768x512.webp 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies.webp 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n			<h2>LIFESPAN PHARMACIES</h2>				\n					<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.</p>\n<p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.</p>\n<p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.</p>\n			<h2>SPORTS ENTREPRENEURSHIP</h2>		\n													<img width=\"800\" height=\"334\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-300x125.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-768x320.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        WINNER OF DPCL FIRST SEASON\n                    </h3>\n                        We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.                    \n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        PROUD OWNER OF VIZAG WARRIORS\n                    </h3>\n                        N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-03-06 13:34:22','2024-03-06 08:04:22','',182,'https://narendraram.com/?p=284',0,'revision','',0),(285,1,'2024-03-06 13:35:10','2024-03-06 08:05:10','<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"1280\" height=\"536\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp 1280w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-300x126.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-1024x429.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-768x322.webp 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />													\n			<h2>LIFESPAN SUPER SPECIALITY HOSPITALS</h2>				\n					<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.</p>\n<p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Personalized Care Plans                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Total Healthcare Solution                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    State of the Art Technology                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Fast Track Appointments                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Comprehensive Wellness Programs                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Community Outreach Programs                </h3>\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-768x512.webp 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies.webp 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n			<h2>LIFESPAN PHARMACIES</h2>				\n					<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.</p>\n<p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.</p>\n<p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.</p>\n			<h2>SPORTS ENTREPRENEURSHIP</h2>		\n													<img width=\"800\" height=\"334\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-300x125.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-768x320.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        WINNER OF DPCL FIRST SEASON\n                    </h3>\n                        We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.                    \n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        PROUD OWNER OF VIZAG WARRIORS\n                    </h3>\n                        N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-03-06 13:35:10','2024-03-06 08:05:10','',182,'https://narendraram.com/?p=285',0,'revision','',0),(286,1,'2024-03-06 13:35:10','2024-03-06 08:05:10','<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"1280\" height=\"536\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp 1280w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-300x126.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-1024x429.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-768x322.webp 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />													\n			<h2>LIFESPAN SUPER SPECIALITY HOSPITALS</h2>				\n					<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.</p>\n<p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Personalized Care Plans                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Total Healthcare Solution                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    State of the Art Technology                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Fast Track Appointments                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Comprehensive Wellness Programs                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Community Outreach Programs                </h3>\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-768x512.webp 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies.webp 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n			<h2>LIFESPAN PHARMACIES</h2>				\n					<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.</p>\n<p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.</p>\n<p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.</p>\n			<h2>SPORTS ENTREPRENEURSHIP</h2>		\n													<img width=\"800\" height=\"334\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-300x125.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-768x320.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        WINNER OF DPCL FIRST SEASON\n                    </h3>\n                        We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.                    \n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        PROUD OWNER OF VIZAG WARRIORS\n                    </h3>\n                        N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-03-06 13:35:10','2024-03-06 08:05:10','',182,'https://narendraram.com/?p=286',0,'revision','',0),(287,1,'2024-03-06 13:35:10','2024-03-06 08:05:10','<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"1280\" height=\"536\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp 1280w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-300x126.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-1024x429.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-768x322.webp 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />													\n			<h2>LIFESPAN SUPER SPECIALITY HOSPITALS</h2>				\n					<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.</p>\n<p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Personalized Care Plans                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Total Healthcare Solution                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    State of the Art Technology                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Fast Track Appointments                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Comprehensive Wellness Programs                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Community Outreach Programs                </h3>\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-768x512.webp 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies.webp 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n			<h2>LIFESPAN PHARMACIES</h2>				\n					<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.</p>\n<p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.</p>\n<p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.</p>\n			<h2>SPORTS ENTREPRENEURSHIP</h2>		\n													<img width=\"800\" height=\"334\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-300x125.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-768x320.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        WINNER OF DPCL FIRST SEASON\n                    </h3>\n                        We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.                    \n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        PROUD OWNER OF VIZAG WARRIORS\n                    </h3>\n                        N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-03-06 13:35:10','2024-03-06 08:05:10','',182,'https://narendraram.com/?p=287',0,'revision','',0),(288,1,'2024-03-06 13:37:00','2024-03-06 08:07:00','<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"1280\" height=\"536\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp 1280w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-300x126.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-1024x429.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-768x322.webp 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />													\n			<h2>LIFESPAN SUPER SPECIALITY HOSPITALS</h2>				\n					<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.</p>\n<p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Personalized Care Plans                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Total Healthcare Solution                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    State of the Art Technology                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Fast Track Appointments                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Comprehensive Wellness Programs                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Community Outreach Programs                </h3>\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-768x512.webp 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies.webp 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n			<h2>LIFESPAN PHARMACIES</h2>				\n					<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.</p>\n<p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.</p>\n<p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.</p>\n			<h2>SPORTS ENTREPRENEURSHIP</h2>		\n													<img width=\"800\" height=\"334\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-300x125.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-768x320.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        WINNER OF DPCL FIRST SEASON\n                    </h3>\n                        We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.                    \n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        PROUD OWNER OF VIZAG WARRIORS\n                    </h3>\n                        N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-03-06 13:37:00','2024-03-06 08:07:00','',182,'https://narendraram.com/?p=288',0,'revision','',0),(289,1,'2024-03-06 13:37:00','2024-03-06 08:07:00','<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"1280\" height=\"536\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp 1280w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-300x126.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-1024x429.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-768x322.webp 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />													\n			<h2>LIFESPAN SUPER SPECIALITY HOSPITALS</h2>				\n					<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.</p>\n<p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Personalized Care Plans                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Total Healthcare Solution                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    State of the Art Technology                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Fast Track Appointments                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Comprehensive Wellness Programs                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Community Outreach Programs                </h3>\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-768x512.webp 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies.webp 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n			<h2>LIFESPAN PHARMACIES</h2>				\n					<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.</p>\n<p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.</p>\n<p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.</p>\n			<h2>SPORTS ENTREPRENEURSHIP</h2>		\n													<img width=\"800\" height=\"334\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-300x125.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-768x320.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        WINNER OF DPCL FIRST SEASON\n                    </h3>\n                        We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.                    \n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        PROUD OWNER OF VIZAG WARRIORS\n                    </h3>\n                        N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-03-06 13:37:00','2024-03-06 08:07:00','',182,'https://narendraram.com/?p=289',0,'revision','',0),(290,1,'2024-03-06 13:37:00','2024-03-06 08:07:00','<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>										<img width=\"1707\" height=\"2560\" src=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/DSC02044-scaled.jpg 1707w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-200x300.jpg 200w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-683x1024.jpg 683w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-768x1152.jpg 768w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1024x1536.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/DSC02044-1365x2048.jpg 1365w\" sizes=\"(max-width: 1707px) 100vw, 1707px\" />													\n													<img width=\"501\" height=\"1080\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Arrow1.png 501w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-139x300.png 139w, https://narendraram.com/wp-content/uploads/2024/02/Arrow1-475x1024.png 475w\" sizes=\"(max-width: 501px) 100vw, 501px\" />													\n			<style>/*! elementor - v3.19.0 - 28-02-2024 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h6>A Versatile Tycoon, Proficient in Diverse Realms</h6>		\n			<h1>The dynamic  Mr. Narendra Ram</h1>		\n		<p>A visionary dedicated to innovation and unwavering in his commitment to leadership. His personal traits not only define him but also inspire a culture of excellence and forward thinking.</p>		\n			<a href=\"#more\">\n						discover more\n					</a>\n			<h6>who am I?</h6>		\n			<h2>NARENDRA  RAM</h2>		\n		<p><em>Social Entrepreneur, Industrialist, Educationist, Innovator, Media Philanthropist, Health &amp; Wellness, Sports Entrepreneur.</em></p>		\n			<link rel=\"stylesheet\" href=\"https://narendraram.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h5>\n						EDUCATION					\n				</h5>\n									<p>\n						B.Com, MBA, Diploma in Public Relations, LLB, Honorary Doctorate in Entrepreneurship					</p>\n				<h5>\n						SKILLS AND COMPETENCIES					\n				</h5>\n									<p>\n						Leadership Mastery, Hard Work and Perseverance, Strategic Thinking.					</p>\n		<p>Get to know the vibrant Trailblazer Mr. Narendra Ram went from being an HR trainee to becoming a successful business owner. Not only have his strategic insights, remarkable people skills, and unwavering dedication transformed businesses, but they have also inspired the youth of India. Apart from his achievements in business, Mr. Narendra Ram is a role model for community service and a supporter of social equality.</p><p>As a first-generation entrepreneur, he not only excelled in the business realm but also fortified the pillars of health and education, contributing significantly to the nation\'s progress. Embark on a path of innovation, leadership, and positive change alongside Mr. Narendra Ram, a true influencer shaping success stories.</p>		\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3.jpg 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-3-214x300.jpg 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4.png 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-4-214x300.png 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n			<h6>GOALS</h6>		\n			<h2>Mastering Success In Diverse Realms  An Enriched, Dynamic Journey!</h2>		\n		<p>Embarking on a journey of unparalleled success, Mr. Narendra Ram exemplifies unwavering leadership. With a steadfast commitment to excellence, he fearlessly tackles business challenges, fuels innovation, and cultivates a culture of collaboration.</p>		\n				<h5>\n						ENHANCING QUALITY OF LIFE					\n				</h5>\n				<h5>\n						CHAMPIONING TRANSPARENCY AND ETHICAL BUSINESS CONDUCT					\n				</h5>\n													<img width=\"500\" height=\"700\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2.webp 500w, https://narendraram.com/wp-content/uploads/2024/02/Untitled-design-2-214x300.webp 214w\" sizes=\"(max-width: 500px) 100vw, 500px\" />													\n				<h5>\n						TO CREATE JOB OPPORTUNITIES FOR YOUTH					\n				</h5>\n				<h5>\n						PROMOTING SUSTAINABILITY FOR A GREENER PLANET					\n				</h5>\n			<h2>STATE OF THE ART <br>MANUFACTURING FACILITY</h2>		\n													<img width=\"1500\" height=\"1061\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited.jpg 1500w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-300x212.jpg 300w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-1024x724.jpg 1024w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-768x543.jpg 768w\" sizes=\"(max-width: 1500px) 100vw, 1500px\" />													\n			<h2>LIFESPAN PRIVATE LIMITED</h2><h3>\n						India&#039;s one of the largest manufacturer of Nutraceutical, Herbal, Ayurvedic and Personal Care Products\n					</h3>				\n					<p>Crafted by the visionary Mr. Narendra Ram, a firm believer in the mantra \"let food be the medicine,\" Lifespan Pvt. Ltd. emerged with a resolute mission. This venture is dedicated to delivering trustworthy, top-notch supplements, shaping a healthier society with each carefully curated product.</p>\n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-3-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        TELANGANA GOVERNMENT COMMENDS ENTREPRENEUR\'S VISION\n                    </h3>\n                        The government of Telangana too appreciated his vision of improving lives through Mother Nature and the innovative idea of Nutraceutical manufacturing, and thus allocated 130,000 square feet for setting up a unit at Biotech Park, Genome Valley, Hyderabad.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-2-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        PERPETUAL PROMISE: LIFESPAN\'S QUALITY ASSURANCE GUARANTEE \n                    </h3>\n                        Lifespan Pvt. Ltd. emerged as a world-class manufacturing facility within a short span and elevated itself as one of India\'s largest manufacturers of Nutraceuticals, Herbal, Ayurvedic and Personal Care Products.                    \n                    <img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1.jpg 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-manufacturing-1-300x171.jpg 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />\n                                                <h3>\n                        CUSTOMER CENTRIC PRODUCT DEVELOPMENT AND MANUFACTURING:\n                    </h3>\n                        Customer-centric product development and manufacturing priorities customer needs. Insights from market research guide tailored product creation. This approach ensures efficient, quality manufacturing processes. The result is increased customer satisfaction and brand loyalty.                     \n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-9-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-8-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n										<a  >\n												<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-11-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />											\n										</a>\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-10-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-5-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-7-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-6-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-2-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-3-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n											<img width=\"700\" height=\"400\" src=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1.png 700w, https://narendraram.com/wp-content/uploads/2024/02/Lifespan-Private-Limited-Licenses-1-300x171.png 300w\" sizes=\"(max-width: 700px) 100vw, 700px\" />										\n							<!-- .elementskit-clients-slider END -->\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharamcies-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"1280\" height=\"536\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals.webp 1280w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-300x126.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-1024x429.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-hospitals-768x322.webp 768w\" sizes=\"(max-width: 1280px) 100vw, 1280px\" />													\n			<h2>LIFESPAN SUPER SPECIALITY HOSPITALS</h2>				\n					<p>Enter the world of Mr. Narendra Ram, a forward-thinking businessman who is a shining example of innovation in the nutraceutical sector. Having a strong desire to change the health and medical industry, he started Lifespan Super Speciality Hospitals, marking the beginning of an inspiring journey.</p>\n<p>Motivated by a desire to help others, Mr. Narendra Ram is dedicated to improving healthcare access for everyone. Under his leadership, Lifespan Super Speciality Hospitals reflect his strong commitment to transforming healthcare and positively impacting many lives.</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Personalized Care Plans                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Total Healthcare Solution                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    State of the Art Technology                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Fast Track Appointments                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Comprehensive Wellness Programs                </h3>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Community Outreach Programs                </h3>\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies-768x512.webp 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Pharmacies.webp 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n													<img width=\"800\" height=\"534\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-1024x683.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-300x200.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo-768x512.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Phramacy-logo.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n			<h2>LIFESPAN PHARMACIES</h2>				\n					<p>Mr. Narendra Ram, a visionary entrepreneur now leading the charge in the realm of health and wellness. Fueled by a burning passion to serve society, he took a monumental step by founding Lifespan Pharmacies, to ensure access to essential medication for every individual, bridging gaps and restoring hope in every prescription filled.</p>\n<p>Alongside Lifespan Pharmacies, Mr. Narendra Ram champions Lifespan Super Speciality Hospitals, where healing meets innovation. With a heart devoted to uplifting lives, he dares to dream of a healthier, happier tomorrow for all.</p>\n<p>Lifespan Pharma envisions making affordable medication accessible to everyone across India.</p>\n			<h2>SPORTS ENTREPRENEURSHIP</h2>		\n													<img width=\"800\" height=\"334\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-1024x427.png 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-300x125.png 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports-768x320.png 768w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-N-Sports.png 1200w\" sizes=\"(max-width: 800px) 100vw, 800px\" />													\n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Lions-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        WINNER OF DPCL FIRST SEASON\n                    </h3>\n                        We are overjoyed about our Team Lifespan Lions for their win at the Doctor\'s Premier Cricket League 2022, Heartfelt thanks to all our supporters for the encouragement and standing with us in the moment of achieving victory.                    \n                    <img width=\"1200\" height=\"800\" src=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp\" alt=\"\" srcset=\"https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors.webp 1200w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-300x200.webp 300w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-1024x683.webp 1024w, https://narendraram.com/wp-content/uploads/2024/03/Lifespan-Vizag-Warriors-768x512.webp 768w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" />\n                                                <h3>\n                        PROUD OWNER OF VIZAG WARRIORS\n                    </h3>\n                        N-sports, a subsidiary of Lifespan, owns the Vizag Warriors Cricket Team of the Andhra Premier League, the first-ever cricket tournament started by the Andhra Cricket Association.','Home trial','','inherit','closed','closed','','182-revision-v1','','','2024-03-06 13:37:00','2024-03-06 08:07:00','',182,'https://narendraram.com/?p=290',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `term_order` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(27,2,0),(32,2,0),(35,2,0),(39,3,0),(41,3,0),(45,3,0),(48,2,0),(51,3,0),(62,2,0),(98,4,0),(99,4,0),(100,4,0),(101,4,0),(102,4,0),(103,4,0),(104,4,0),(105,4,0),(106,4,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `count` bigint(20) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'elementor_library_type','',0,5),(3,3,'elementor_library_type','',0,4),(4,4,'nav_menu','',0,9);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_termmeta`
--

LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'section','section',0),(3,'page','page',0),(4,'Main menu','main-menu',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','sitemanager'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"3dc5105d71195e56f8af6854e293eed428428a39a06a20abe5d4b383e78e08e7\";a:4:{s:10:\"expiration\";i:1709884499;s:2:\"ip\";s:14:\"182.69.179.192\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36\";s:5:\"login\";i:1709711699;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','4'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"182.69.179.0\";}'),(19,1,'wp_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2024-02-05T17:17:08.900Z\";}'),(20,1,'elementor_introduction','a:3:{s:27:\"ai-get-started-announcement\";b:1;s:20:\"globals_introduction\";b:1;s:7:\"exit_to\";b:1;}'),(21,1,'wp_user-settings','libraryContent=browse&editor=tinymce'),(22,1,'wp_user-settings-time','1707882394'),(23,1,'hfe-popup','dismissed'),(24,1,'header-footer-elementor-rating','delayed-notice'),(25,1,'closedpostboxes_elementor-hf','a:1:{i:0;s:12:\"postimagediv\";}'),(26,1,'metaboxhidden_elementor-hf','a:1:{i:0;s:7:\"slugdiv\";}'),(27,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(28,1,'metaboxhidden_nav-menus','a:2:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:12:\"add-post_tag\";}'),(29,1,'elementor_dismissed_editor_notices','a:1:{i:0;s:23:\"image-optimization-once\";}'),(30,1,'nav_menu_recently_edited','4');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT 0,
  `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'sitemanager','$P$BFsJFnj4WGAZnnLvRdAnFe1l.1ybHh/','sitemanager','wp@dxpsites.com','https://ls-narendraram.in8.cdn-alpha.com','2024-02-05 16:35:52','',0,'sitemanager');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2024-06-01 21:05:59